30 lines
1.0 KiB
Bash
30 lines
1.0 KiB
Bash
# Template file for 'fortune-mod'
|
|
pkgname=fortune-mod
|
|
version=1.99.1
|
|
revision=3
|
|
hostmakedepends="recode"
|
|
makedepends="recode-devel"
|
|
short_desc="Implementation of the BSDGames 'fortune' program"
|
|
maintainer="Tj Vanderpoel (bougyman) <tj@rubyists.com>"
|
|
license="GPL-2"
|
|
homepage="http://www.redellipse.net/code/fortune"
|
|
distfiles="${DEBIAN_SITE}/main/f/fortune-mod/${pkgname}_${version}.orig.tar.gz"
|
|
checksum=fc51aee1f73c936c885f4e0f8b6b48f4f68103e3896eaddc6a45d2b71e14eace
|
|
nocross=yes
|
|
|
|
do_build() {
|
|
sed -i "s|^CFLAGS=.*|CFLAGS=${CFLAGS} -fsigned-char \$(DEFINES)|" Makefile
|
|
sed -i "s|^LDFLAGS=.*|LDFLAGS=${LDFLAGS}|" Makefile
|
|
sed -i "s;u_int;uint;" util/strfile.h
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
*-musl)
|
|
cp ${FILESDIR}/error.{c,h} ${wrksrc}/fortune
|
|
sed -e "s;-DBSD_REGEX;-DPOSIX_REGEX;" -i Makefile
|
|
sed -e "s;fortune\.o;fortune.o error.o;" -i fortune/Makefile
|
|
esac
|
|
make CC=$CC COOKIEDIR=/usr/share/fortunes
|
|
}
|
|
do_install() {
|
|
make prefix=${DESTDIR} FORTDIR=${DESTDIR}/usr/bin COOKIEDIR=$DESTDIR/usr/share/fortunes install
|
|
}
|