contrib/at/Pkgfile

30 lines
622 B
Plaintext
Raw Normal View History

2007-05-30 16:07:51 +02:00
# Description: at, batch - queue, examine or delete jobs for later execution
2018-12-23 17:48:10 +01:00
# URL: http://blog.calhariz.com/tag/at
2018-02-26 20:48:28 +01:00
# Maintainer: John Vogel, jvogel4 at stny dot rr dot com
# Depends on: exim
2007-05-30 16:07:51 +02:00
name=at
version=3.1.20
2018-12-23 17:48:10 +01:00
release=2
source=(http://blog.calhariz.com/public/sft/$name/${name}_$version.orig.tar.gz
fix_fcntl_call.diff
2007-05-30 16:07:51 +02:00
atd)
build() {
2018-12-23 17:48:10 +01:00
cd $name-$version
patch -p1 < $SRC/fix_fcntl_call.diff
autoreconf
SENDMAIL=/usr/sbin/sendmail \
CONFIG_SHELL=/bin/bash \
./configure --prefix=/usr
make -j1
make IROOT=$PKG install
rm -r $PKG/usr/doc
install -D -m 0755 $SRC/atd $PKG/etc/rc.d/atd
2007-05-30 16:07:51 +02:00
}