contrib/fortune/Pkgfile

35 lines
1.1 KiB
Plaintext
Raw Normal View History

2009-01-12 23:25:59 +01:00
# Description: Display a random fortune
2009-09-17 21:40:50 +02:00
# URL: http://www.ibiblio.org/pub/Linux/games/amusements/fortune/
2021-06-27 23:18:33 +02:00
# Maintainer: Danny Rawlins, crux at romster dot me
2009-01-12 23:25:59 +01:00
# Packager: Daniel Mueller, daniel at danm dot de
name=fortune
version=0.2
2020-01-20 15:57:37 +01:00
release=6
2009-01-12 23:25:59 +01:00
source=(http://www.ibiblio.org/pub/Linux/games/amusements/$name/$name-$version.tar.gz \
$name-$version.patch \
2010-05-23 23:45:07 +02:00
http://crux.nu/~tek/fortune_big.zip \
2009-01-12 23:25:59 +01:00
http://www.schwarzvogel.de/pkgs/kernelcookies-8.tar.gz \
http://www.splitbrain.org/_media/projects/fortunes/fortune-simpsons-chalkboard.tgz \
http://www.splitbrain.org/_media/projects/fortunes/fortune-discworld.tgz \
http://crux.nu/files/distfiles/fortune-mod-prog-style.tar.gz)
build(){
local cookie
cd $name-$version
patch -p1 < ../$name-$version.patch
make
2020-01-20 15:57:37 +01:00
mkdir -p $PKG/usr/{bin,share/man/man6,share/games/fortunes}
2009-01-12 23:25:59 +01:00
install -m 755 $name $PKG/usr/bin/$name
2020-01-20 15:57:37 +01:00
install -m 644 debian/$name.6 $PKG/usr/share/man/man6/
2009-01-12 23:25:59 +01:00
cd $SRC
for cookie in */prog-style */discworld */chalkboard */kernelcookies fortune
do
install -m 644 $cookie $PKG/usr/share/games/fortunes/
done
}