21 lines
629 B
Bash
21 lines
629 B
Bash
# Template file for 'banner'
|
|
pkgname=banner
|
|
version=1.2
|
|
revision=5
|
|
build_style=gnu-configure
|
|
short_desc="Prints ASCII banners"
|
|
maintainer="allan <mail@may.mooo.com>"
|
|
license="GPL-2"
|
|
homepage="http://www.moria.de/~michael/comp/banner"
|
|
distfiles="http://www.moria.de/~michael/comp/banner/banner-${version}.tar.gz"
|
|
checksum=84828f417e6139733cff98c8bb4765a70070352ab7d471ecd1f54d8fa8a9f746
|
|
conflicts="bsd-games>=0"
|
|
|
|
pre_configure() {
|
|
sed -i configure \
|
|
-e '2439i if ! test "$cross_compiling"; then' \
|
|
-e '2497a fi'
|
|
}
|
|
do_install() {
|
|
make prefix=${DESTDIR}/usr BINDIR=${DESTDIR}/usr/bin MANDIR=${DESTDIR}/usr/share/man install
|
|
}
|