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