mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-24 18:42:14 +08:00
9be04abd32
* dmraid: bump to 1.0.0.rc16.3 * mdadm: rebuild against new initscripts * initscripts: update tarball
41 lines
1.3 KiB
Bash
41 lines
1.3 KiB
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
pkgname=dmraid
|
|
pkgver=1.0.0.rc16.3
|
|
pkgrel=1
|
|
pkgdesc="Device mapper RAID interface"
|
|
url="http://people.redhat.com/~heinzm/sw/dmraid/"
|
|
depends=('device-mapper>=2.0.54')
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL')
|
|
source=(#ftp://ftp.archlinux.org/other/dmraid/$pkgname-$pkgver.tar.bz2
|
|
http://people.redhat.com/~heinzm/sw/dmraid/src/$pkgname-1.0.0.rc16-3.tar.bz2
|
|
dmraid_install
|
|
dmraid_hook)
|
|
install=dmraid.install
|
|
md5sums=('819338fcef98e8e25819f0516722beeb'
|
|
'd01908b414e1686c0f3233ff37de78a5'
|
|
'0a748b6e78b156f2f9dda45fc629651f')
|
|
|
|
build() {
|
|
cd "$srcdir"/$pkgname/1.0.0.rc16-3/$pkgname
|
|
./configure --enable-led --enable-intel_led
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir"/$pkgname/1.0.0.rc16-3/$pkgname
|
|
make DESTDIR="$pkgdir" prefix=/ libdir=/lib mandir=/usr/share/man includedir=/usr/include install
|
|
mkdir -p "$pkgdir"/var/lock/dmraid
|
|
chmod 1777 "$pkgdir"/var/lock/
|
|
install -D -m644 "$srcdir"/dmraid_install "$pkgdir"/lib/initcpio/install/dmraid
|
|
install -D -m644 "$srcdir"/dmraid_hook "$pkgdir"/lib/initcpio/hooks/dmraid
|
|
# fix permissions
|
|
chmod 644 "$pkgdir"/lib/libdmraid.a
|
|
chmod 644 "$pkgdir"/usr/include/dmraid/*
|
|
}
|