wok annotate at/receipt @ rev 19275

Check manpages... from start to beaver.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Jul 05 15:34:01 2016 +0300 (2016-07-05)
parents 7f39549720b8
children e3270f32432e
rev   line source
pascal@7589 1 # SliTaz package receipt.
pascal@7589 2
pascal@7589 3 PACKAGE="at"
slaxemulator@10992 4 VERSION="3.1.13"
pascal@7589 5 CATEGORY="system-tools"
pascal@7589 6 SHORT_DESC="Schedule commands to be executed once."
pascal@7589 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15362 8 LICENSE="GPL2"
al@19275 9 WEB_SITE="http://packages.debian.org/lenny/at"
pascal@7589 10 TARBALL="${PACKAGE}_${VERSION}.orig.tar.gz"
pascal@7589 11 WGET_URL="http://ftp.debian.org/debian/pool/main/${PACKAGE:0:1}/$PACKAGE/$TARBALL"
pascal@7589 12
pascal@15362 13 BUILD_DEPENDS="bison flex ssmtp"
pascal@15362 14
pascal@7589 15 # Rules to configure and make the package.
pascal@7589 16 compile_rules()
pascal@7589 17 {
slaxemulator@8758 18 ./configure --with-daemon_username=nobody \
pascal@7589 19 --with-daemon_groupname=nogroup \
slaxemulator@8758 20 --with-atspool=/var/spool/atd \
slaxemulator@10051 21 --with-jobdir=/var/spool/atd \
slaxemulator@10051 22 $CONFIGURE_ARGS &&
slaxemulator@10992 23 make -j1 &&
slaxemulator@10992 24 make -j1 IROOT=$DESTDIR install
pascal@7589 25 }
pascal@7589 26
pascal@7589 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@7589 28 genpkg_rules()
pascal@7589 29 {
slaxemulator@10992 30 mkdir -p $fs/usr $fs/etc/init.d
pascal@15362 31 cp -a $install/usr/bin $fs/usr
pascal@15362 32 cp -a $install/usr/sbin $fs/usr
pascal@15362 33 cp -a $install/etc $fs
pascal@15362 34 cp -a $install/var $fs
slaxemulator@10992 35 cp -a $stuff/atd $fs/etc/init.d
pascal@7589 36 }