mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
48 lines
1.6 KiB
Bash
48 lines
1.6 KiB
Bash
# $Id: PKGBUILD 89445 2010-09-01 06:46:31Z tpowa $
|
|
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
|
|
# Contributor: Judd Vinet <jvinet@zeroflux.org>
|
|
|
|
# PlugApps: Kevin Mihelich <kevin@plugapps.com>
|
|
# - fixed error with old call to ld '-z now' to new gcc '-Wl,-z,now'
|
|
|
|
plugrel=1
|
|
|
|
pkgname=mdadm
|
|
pkgver=3.1.4
|
|
pkgrel=1
|
|
pkgdesc="A tool for managing/monitoring Linux md device arrays, also known as Software RAID"
|
|
arch=(i686 x86_64)
|
|
license=('GPL')
|
|
url="http://www.cse.unsw.edu.au/~neilb/source/mdadm/"
|
|
groups=('base')
|
|
conflicts=('mkinitcpio<0.5.99')
|
|
depends=('glibc')
|
|
backup=('etc/mdadm.conf')
|
|
source=(ftp://ftp.kernel.org/pub/linux/utils/raid/mdadm/mdadm-$pkgver.tar.bz2
|
|
mdadm
|
|
mdadm.conf
|
|
mdadm_install
|
|
mdadm_hook)
|
|
install=mdadm.install
|
|
replaces=('raidtools')
|
|
md5sums=('0e7dcb5cc4192ae3abd9956bac475576'
|
|
'6df172c8f77b280018cf87eb3d313f29'
|
|
'00cbed931db4f15b6ce49e3e7d433966'
|
|
'865c3d39e5f5dae58388160b563981f1'
|
|
'1a3eb63832cecd6550f5b0a21d58cfdb')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
sed -i 's/-z now/-Wl,-z,now/' Makefile
|
|
make || return 1
|
|
make INSTALL=/bin/install DESTDIR=$pkgdir install
|
|
install -D -m644 ../mdadm.conf $pkgdir/etc/mdadm.conf
|
|
install -D -m755 ../mdadm $pkgdir/etc/rc.d/mdadm
|
|
install -D -m644 ../mdadm_install $pkgdir/lib/initcpio/install/mdadm
|
|
install -D -m644 ../mdadm_hook $pkgdir/lib/initcpio/hooks/mdadm
|
|
# symlink for backward compatibility
|
|
ln -sf /lib/initcpio/hooks/mdadm $pkgdir/lib/initcpio/hooks/raid
|
|
# build static mdassemble for Arch's initramfs
|
|
make MDASSEMBLE_AUTO=1 mdassemble
|
|
install -D -m755 mdassemble $pkgdir/sbin/mdassemble
|
|
}
|