wok annotate ivman/receipt @ rev 1908

tazndis: add symlink to ndiswrapper
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sun Dec 21 15:49:01 2008 +0100 (2008-12-21)
parents f050e8c7eed6
children 13f3f200f867
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@1888 13 CONFIG_FILES="/etc/ivman"
pascal@1879 14
pascal@1879 15 # Rules to configure and make the package.
pascal@1879 16 compile_rules()
pascal@1879 17 {
pascal@1879 18 cd $src
pascal@1879 19 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@1879 20 --mandir=/usr/share/man --sysconfdir=/etc $CONFIGURE_ARGS &&
pascal@1879 21 make &&
pascal@1879 22 make DESTDIR=$PWD/_pkg install
pascal@1879 23 }
pascal@1879 24
pascal@1879 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1879 26 genpkg_rules()
pascal@1879 27 {
pascal@1879 28 mkdir -p $fs/usr/share
pascal@1879 29 cp -a $_pkg/etc $fs
pascal@1879 30 cp -a $_pkg/usr/bin $fs/usr
pascal@1879 31 cp -a $_pkg/usr/share/locale $fs/usr/share
pascal@1879 32 }
pascal@1879 33