banner: actually include the binary

Close #4172.
This commit is contained in:
Alessio Sergi 2016-05-11 01:52:52 +02:00
parent e5255aaae4
commit cc7cb15642
1 changed files with 5 additions and 14 deletions

View File

@ -1,10 +1,9 @@
# Template file for 'banner'
pkgname=banner
version=1.2
revision=3
revision=4
conflicts="bsd-games>=0"
build_style=gnu-configure
hostmakedepends="ed"
short_desc="Prints ASCII banners"
maintainer="allan <mail@may.mooo.com>"
license="GPL-2"
@ -13,18 +12,10 @@ 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
sed -i configure \
-e '2439i if ! test "$cross_compiling"; then' \
-e '2497a fi'
}
do_install() {
make prefix=$DESTDIR/usr/ MANDIR=$DESTDIR/usr/share/man install
make prefix=${DESTDIR}/usr BINDIR=${DESTDIR}/usr/bin MANDIR=${DESTDIR}/usr/share/man install
}