contrib/xplanet/Pkgfile

29 lines
689 B
Plaintext
Raw Normal View History

2006-11-21 14:11:40 +01:00
# Description: Renders an image of the earth into the X root window.
# URL: http://xplanet.sourceforge.net/
2023-08-06 19:32:37 +02:00
# Maintainer: unmaintained
2020-05-12 12:52:53 +02:00
# Depends on: pango giflib libtiff xorg-libxscrnsaver
2006-11-21 14:11:40 +01:00
name=xplanet
2020-05-12 12:52:53 +02:00
version=1.3.1
release=1
source=(https://downloads.sourceforge.net/project/$name/$name/$version/$name-$version.tar.gz
2023-08-06 19:32:37 +02:00
giflib6.patch
xplanet-c++11.patch)
2006-11-21 14:11:40 +01:00
2006-12-05 12:29:16 +01:00
build() {
2023-08-06 19:32:37 +02:00
cd $name-$version
2020-05-12 12:52:53 +02:00
2023-08-06 19:32:37 +02:00
patch -p1 -i $SRC/giflib6.patch
patch -p1 -i $SRC/xplanet-c++11.patch
sed -e 's|freetype-config|pkg-config freetype2|g' -i acinclude.m4
autoreconf -vif
2020-05-12 12:52:53 +02:00
2023-08-06 19:32:37 +02:00
./configure \
--prefix=/usr \
--with-freetype
2009-06-25 17:01:32 +02:00
2023-08-06 19:32:37 +02:00
make
make DESTDIR=$PKG install
find $PKG -name "README" -type f -delete
2006-11-21 14:11:40 +01:00
}