wok annotate ivman/receipt @ rev 1879
Add ivman
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Dec 17 09:25:09 2008 +0000 (2008-12-17) |
parents | |
children | 17c992676fd9 |
rev | line source |
---|---|
pascal@1879 | 1 # SliTaz package receipt. |
pascal@1879 | 2 |
pascal@1879 | 3 PACKAGE="ivman" |
pascal@1879 | 4 VERSION="0.6.14" |
pascal@1879 | 5 CATEGORY="system-tools" |
pascal@1879 | 6 SHORT_DESC="Generic handler for HAL events." |
pascal@1879 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@1879 | 8 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pascal@1879 | 9 WEB_SITE="http://$PACKAGE.sourceforge.net/" |
pascal@1879 | 10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
pascal@1879 | 11 BUILD_DEPENDS="hal-dev hal" |
pascal@1879 | 12 DEPENDS="hal dbus glib libxml2" |
pascal@1879 | 13 |
pascal@1879 | 14 # Rules to configure and make the package. |
pascal@1879 | 15 compile_rules() |
pascal@1879 | 16 { |
pascal@1879 | 17 cd $src |
pascal@1879 | 18 ./configure --prefix=/usr --infodir=/usr/share/info \ |
pascal@1879 | 19 --mandir=/usr/share/man --sysconfdir=/etc $CONFIGURE_ARGS && |
pascal@1879 | 20 make && |
pascal@1879 | 21 make DESTDIR=$PWD/_pkg install |
pascal@1879 | 22 } |
pascal@1879 | 23 |
pascal@1879 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@1879 | 25 genpkg_rules() |
pascal@1879 | 26 { |
pascal@1879 | 27 mkdir -p $fs/usr/share |
pascal@1879 | 28 cp -a $_pkg/etc $fs |
pascal@1879 | 29 cp -a $_pkg/usr/bin $fs/usr |
pascal@1879 | 30 cp -a $_pkg/usr/share/locale $fs/usr/share |
pascal@1879 | 31 } |
pascal@1879 | 32 |