wok annotate autofs/receipt @ rev 7573

Up: tazpkg 4.1.3
author Antoine Bodin <gokhlayeh@slitaz.org>
date Thu Dec 09 17:37:28 2010 +0100 (2010-12-09)
parents 547a87ca6aa4
children 45e2d5caa56d
rev   line source
pascal@7287 1 # SliTaz package receipt.
pascal@7287 2
pascal@7287 3 PACKAGE="autofs"
pascal@7287 4 VERSION="5.0.5"
pascal@7287 5 CATEGORY="system-tools"
pascal@7287 6 SHORT_DESC="Linux automounter."
pascal@7287 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@7287 8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@7287 9 WEB_SITE="http://www.kernel.org/pub/linux/daemons/autofs/v5"
pascal@7287 10 WGET_URL="$WEB_SITE/$TARBALL"
pascal@7323 11 DEPENDS="linux-autofs"
pascal@7287 12 TAGS="filesystem"
pascal@7287 13
pascal@7287 14 # Rules to configure and make the package.
pascal@7287 15 compile_rules()
pascal@7287 16 {
pascal@7287 17 cd $src
pascal@7287 18 sed -i -e 's/-b --suffix=.orig//' -e 's/install -v/install/' */Makefile*
pascal@7287 19 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@7287 20 --mandir=/usr/share/man \
pascal@7287 21 $CONFIGURE_ARGS &&
pascal@7287 22 make &&
pascal@7287 23 make DESTDIR=$PWD/_pkg install
pascal@7287 24 }
pascal@7287 25
pascal@7287 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@7287 27 genpkg_rules()
pascal@7287 28 {
pascal@7287 29 mkdir -p $fs/usr
pascal@7287 30 cp -a $_pkg/usr/sbin $fs/usr
pascal@7287 31 cp -a $_pkg/usr/lib $fs/usr
pascal@7287 32 }
pascal@7323 33
pascal@7323 34 # Pre and post install commands for Tazpkg.
pascal@7323 35 post_install()
pascal@7323 36 {
pascal@7323 37 mkdir -p $1/mnt/auto 2> /dev/null
pascal@7323 38 }