blob: 0af45bfed552fc2b983fc26ce9ccd5a34595889d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
# Maintainer: Judd Vinet <jvinet@zeroflux.org>
pkgname=mdadm
pkgver=3.0
pkgrel=12
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')
depends=('glibc')
backup=('etc/mdadm.conf')
conflicts=('udev<135-4')
source=(ftp://ftp.kernel.org/pub/linux/utils/raid/mdadm/$pkgname-$pkgver.tar.bz2 \
mdadm mdadm.conf raid-partitions_install raid-partitions_hook)
replaces=('raidtools')
md5sums=('bcd27a1359b18e25e61593221d098f6a'
'6df172c8f77b280018cf87eb3d313f29'
'0ce4c0f9770bf582a71228053566359d'
'9de7e423ec9c6766b5f5d39915929003'
'09d72c714b40b6fa1e8eab04c1dabd42')
build() {
cd $startdir/src/$pkgname-$pkgver
make || return 1
make INSTALL=/bin/install DESTDIR=$startdir/pkg install
install -D -m644 ../mdadm.conf $startdir/pkg/etc/mdadm.conf
install -D -m755 ../mdadm $startdir/pkg/etc/rc.d/mdadm
install -D -m644 ../raid-partitions_install $startdir/pkg/lib/initcpio/install/raid-partitions
install -D -m644 ../raid-partitions_hook $startdir/pkg/lib/initcpio/hooks/raid-partitions
# a static binary is required for Arch's initrd
rm mdadm
make LDFLAGS+=-static || return 1
install -D -m755 mdadm $startdir/pkg/sbin/mdadm.static
}
|