4c15f197a4
Also, remove old patch, fixed with 3.1.21 release.
25 lines
549 B
Plaintext
25 lines
549 B
Plaintext
# Description: at, batch - queue, examine or delete jobs for later execution
|
|
# URL: http://blog.calhariz.com/tag/at
|
|
# Maintainer: John Vogel, jvogel4 at stny dot rr dot com
|
|
# Depends on: exim
|
|
|
|
name=at
|
|
version=3.1.23
|
|
release=1
|
|
source=(http://blog.calhariz.com/public/sft/$name/${name}_$version.orig.tar.gz
|
|
atd)
|
|
|
|
build() {
|
|
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
|
|
}
|