2007-05-30 16:07:51 +02:00
|
|
|
# Description: at, batch - queue, examine or delete jobs for later execution
|
2020-07-12 18:48:11 +00:00
|
|
|
# URL: http://blog.calhariz.com/index.php/tag/at
|
2018-02-26 14:48:28 -05:00
|
|
|
# Maintainer: John Vogel, jvogel4 at stny dot rr dot com
|
|
|
|
# Depends on: exim
|
2007-05-30 16:07:51 +02:00
|
|
|
|
|
|
|
name=at
|
2020-09-20 17:37:37 +00:00
|
|
|
version=3.2.1
|
2019-01-05 21:28:30 -05:00
|
|
|
release=1
|
2020-02-13 20:05:25 -05:00
|
|
|
source=(http://software.calhariz.com/at/${name}_$version.orig.tar.gz
|
2007-05-30 16:07:51 +02:00
|
|
|
atd)
|
|
|
|
|
|
|
|
build() {
|
2018-12-23 11:48:10 -05:00
|
|
|
cd $name-$version
|
|
|
|
|
|
|
|
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
|
|
|
}
|