diff options
Diffstat (limited to 'community/fortune-mod/PKGBUILD')
-rw-r--r-- | community/fortune-mod/PKGBUILD | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/community/fortune-mod/PKGBUILD b/community/fortune-mod/PKGBUILD new file mode 100644 index 000000000..3fbbe9f80 --- /dev/null +++ b/community/fortune-mod/PKGBUILD @@ -0,0 +1,36 @@ +# $Id: PKGBUILD 92041 2013-05-31 00:16:32Z seblu $ +# Maintainer: Kevin Piche <kevin@archlinux.org> +# Contributor: Dale Blount <archlinux@dale.us> + +pkgname=fortune-mod +pkgver=1.99.1 +pkgrel=6 +pkgdesc="The Fortune Cookie Program from BSD games" +arch=('i686' 'x86_64') +url="http://www.redellipse.net/code/fortune" +license=('BSD') +depends=('recode') +source=(ftp://ftp.archlinux.org/other/fortune-mod/$pkgname-$pkgver.tar.gz LICENSE 01_all_fortune_all-fix.patch) +md5sums=('f208805b3b712e32997d7667e0ec52d8' + '0217481ae93971296cfb7872157cabb7' + 'e85b073f16dc6f0e8f0ed90044797aa3') + +build() { + cd "$srcdir/$pkgname-$pkgver" + patch -p0 < ../01_all_fortune_all-fix.patch + make REGEXDEFS='-DHAVE_REGEX_H -DPOSIX_REGEX -DHAVE_STDBOOL' \ + COOKIEDIR=/usr/share/fortune \ + LOCALDIR=/usr/local/share/fortune all fortune/fortune.man +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make FORTDIR="$pkgdir"/usr/bin \ + COOKIEDIR="$pkgdir"/usr/share/fortune \ + BINDIR="$pkgdir"/usr/bin \ + BINMANDIR="$pkgdir"/usr/share/man/man1 \ + FORTMANDIR="$pkgdir"/usr/share/man/man6 install + rm "$pkgdir"/usr/share/fortune/*.u8 + rm "$pkgdir"/usr/share/fortune/off/*.u8 + install -D -m644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +} |