wok view 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
line source
1 # SliTaz package receipt.
3 PACKAGE="at"
4 VERSION="3.1.13"
5 CATEGORY="system-tools"
6 SHORT_DESC="Schedule commands to be executed once."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://packages.debian.org/lenny/at"
10 TARBALL="${PACKAGE}_${VERSION}.orig.tar.gz"
11 WGET_URL="http://ftp.debian.org/debian/pool/main/${PACKAGE:0:1}/$PACKAGE/$TARBALL"
13 BUILD_DEPENDS="bison flex ssmtp"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 ./configure --with-daemon_username=nobody \
19 --with-daemon_groupname=nogroup \
20 --with-atspool=/var/spool/atd \
21 --with-jobdir=/var/spool/atd \
22 $CONFIGURE_ARGS &&
23 make -j1 &&
24 make -j1 IROOT=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr $fs/etc/init.d
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/sbin $fs/usr
33 cp -a $install/etc $fs
34 cp -a $install/var $fs
35 cp -a $stuff/atd $fs/etc/init.d
36 }