30 lines
605 B
Bash
30 lines
605 B
Bash
|
# Template file for 'banner'
|
||
|
pkgname=banner
|
||
|
version=1.2
|
||
|
revision=1
|
||
|
build_style=gnu-configure
|
||
|
hostmakedepends="ed"
|
||
|
short_desc="Prints ASCII banners"
|
||
|
maintainer="allan <mail@may.mooo.com>"
|
||
|
license="GPL-2"
|
||
|
homepage="http://www.moria.de/~michael/banner/"
|
||
|
distfiles="http://www.moria.de/~michael/banner/banner-${version}.tar.gz"
|
||
|
checksum=84828f417e6139733cff98c8bb4765a70070352ab7d471ecd1f54d8fa8a9f746
|
||
|
|
||
|
pre_configure() {
|
||
|
ed configure <<-EDIT
|
||
|
2438a
|
||
|
if ! test "\$cross_compiling"; then
|
||
|
.
|
||
|
2497a
|
||
|
fi
|
||
|
.
|
||
|
w
|
||
|
q
|
||
|
EDIT
|
||
|
}
|
||
|
|
||
|
do_install() {
|
||
|
make prefix=$DESTDIR/usr/ MANDIR=$DESTDIR/usr/share/man install
|
||
|
}
|