wok view dmraid/receipt @ rev 4377

alpine: link shared libs (again)
author Paul Issott <paul@slitaz.org>
date Mon Oct 12 21:05:53 2009 +0000 (2009-10-12)
parents 1a703730ac71
children 280e60ee2839
line source
1 # SliTaz package receipt.
3 PACKAGE="dmraid"
4 VERSION="1.0.0.rc15"
5 CATEGORY="system-tools"
6 SHORT_DESC="Device-Mapper Software Raid Tool."
7 MAINTAINER="pascal;bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://people.redhat.com/~heinzm/sw/dmraid/"
10 WGET_URL="$WEB_SITE/src/$TARBALL"
11 DEPENDS="libdevmapper linux-md"
12 BUILD_DEPENDS="libdevmapper-dev"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 mv $PACKAGE/$VERSION $src && rmdir $PACKAGE 2> /dev/null
18 cd $src
19 #sed -i 's/sed --quiet/sed/' configure configure.in
20 ./configure --prefix=/usr --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/sbin
30 cp -a $src/tools/dmraid $fs/usr/sbin
31 cp -a stuff/grub-dmraid $fs/usr/sbin
32 cp -a stuff/dmraid-start $fs/usr/sbin
33 }