forked from ports/contrib
25 lines
611 B
Plaintext
25 lines
611 B
Plaintext
# Description: Renders an image of the earth into the X root window.
|
|
# URL: http://xplanet.sourceforge.net/
|
|
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
|
|
# Packager: Danny Rawlins, monster dot romster at gmail dot com
|
|
# Depends on: xorg libtiff libpng libungif
|
|
|
|
name=xplanet
|
|
version=1.2.1
|
|
release=2
|
|
source=(http://download.sourceforge.net/$name/$name-$version.tar.gz
|
|
xplanet-1.2.1.patch)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
patch -p 1 -i $SRC/xplanet-1.2.1.patch
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--mandir=/usr/man
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
find $PKG -name "README" -type f -delete
|
|
}
|