wok annotate autofs/receipt @ rev 19269

Compress manpages.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Jul 04 14:47:05 2016 +0300 (2016-07-04)
parents d5f9f516b706
children 11b5e93cb5f2
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@15000 9 LICENSE="GPL2"
pascal@7287 10 WEB_SITE="http://www.kernel.org/pub/linux/daemons/autofs/v5"
pascal@7287 11 WGET_URL="$WEB_SITE/$TARBALL"
pascal@14772 12 TAZPANEL_DAEMON="man|help::automount|edit::/etc/auto.misc|options::AUTOMOUNT_OPTIONS|web::$WEB_SITE"
pascal@14772 13 TAGS="filesystem"
pascal@14772 14
pascal@7323 15 DEPENDS="linux-autofs"
pascal@15000 16 BUILD_DEPENDS="flex libxml2-dev openldap-dev cyrus-sasl-dev openssl-dev krb5-dev"
pascal@7287 17
pascal@7287 18 # Rules to configure and make the package.
pascal@7287 19 compile_rules()
pascal@7287 20 {
pascal@7287 21 sed -i -e 's/-b --suffix=.orig//' -e 's/install -v/install/' */Makefile*
pascal@7287 22 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@7287 23 --mandir=/usr/share/man \
pascal@7287 24 $CONFIGURE_ARGS &&
pascal@7287 25 make &&
pascal@14772 26 make DESTDIR=$DESTDIR install
al@19269 27
al@19269 28 cook_compress_manpages
pascal@7287 29 }
pascal@7287 30
pascal@7287 31 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@7287 32 genpkg_rules()
pascal@7287 33 {
pascal@7287 34 mkdir -p $fs/usr
claudinei@13581 35 mkdir -p $fs/etc/init.d
pascal@14772 36 cp -a $install/usr/sbin $fs/usr
pascal@14772 37 cp -a $install/usr/lib $fs/usr
claudinei@13581 38 cp -a $stuff/etc/* $fs/etc
pascal@7287 39 }
pascal@7323 40
pascal@7323 41 # Pre and post install commands for Tazpkg.
pascal@7323 42 post_install()
pascal@7323 43 {
al@18667 44 mkdir -p "$1/mnt/auto" 2>/dev/null
pascal@7323 45 }