wok rev 22405

at requires pam
author Hans-G?nter Theisgen
date Tue Dec 10 16:39:57 2019 +0100 (2019-12-10)
parents 996067d113c6
children 20d32321cac5
files at/receipt
line diff
     1.1 --- a/at/receipt	Mon Dec 09 16:05:14 2019 +0100
     1.2 +++ b/at/receipt	Tue Dec 10 16:39:57 2019 +0100
     1.3 @@ -11,18 +11,19 @@
     1.4  TARBALL="${PACKAGE}_${VERSION}.orig.tar.gz"
     1.5  WGET_URL="http://ftp.debian.org/debian/pool/main/${PACKAGE:0:1}/$PACKAGE/$TARBALL"
     1.6  
     1.7 -DEPENDS="flex"
     1.8 +DEPENDS="flex pam"
     1.9  BUILD_DEPENDS="bison flex ssmtp"
    1.10  
    1.11  # Rules to configure and make the package.
    1.12  compile_rules()
    1.13  {
    1.14  	sed -i 's|/doc|/share/doc|' Makefile*
    1.15 -	./configure \
    1.16 -		--with-daemon_username=nobody \
    1.17 -		--with-daemon_groupname=nogroup \
    1.18 -		--with-atspool=/var/spool/atd \
    1.19 -		--with-jobdir=/var/spool/atd \
    1.20 +
    1.21 +	./configure				\
    1.22 +		--with-daemon_username=nobody	\
    1.23 +		--with-daemon_groupname=nogroup	\
    1.24 +		--with-atspool=/var/spool/atd	\
    1.25 +		--with-jobdir=/var/spool/atd	\
    1.26  		$CONFIGURE_ARGS &&
    1.27  	make -j1 &&
    1.28  	make -j1 IROOT=$DESTDIR install || return 1
    1.29 @@ -31,11 +32,13 @@
    1.30  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.31  genpkg_rules()
    1.32  {
    1.33 -	mkdir -p $fs/usr $fs/etc/init.d
    1.34 -	cp -a $install/usr/bin $fs/usr
    1.35 -	cp -a $install/usr/sbin $fs/usr
    1.36 -	cp -a $install/etc $fs
    1.37 -	cp -a $install/var $fs
    1.38 -	cp -a $stuff/atd $fs/etc/init.d
    1.39 +	mkdir -p $fs/usr
    1.40 +	mkdir -p $fs/etc/init.d
    1.41 +
    1.42 +	cp -a $install/usr/bin	$fs/usr
    1.43 +	cp -a $install/usr/sbin	$fs/usr
    1.44 +	cp -a $install/etc	$fs
    1.45 +	cp -a $install/var	$fs
    1.46 +	cp -a $stuff/atd	$fs/etc/init.d
    1.47  	chmod 6755 $fs/usr/bin/at
    1.48  }