forked from ports/contrib
23 lines
539 B
Plaintext
23 lines
539 B
Plaintext
# Description: Renders an image of the earth into the X root window.
|
|
# URL: http://xplanet.sourceforge.net/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Packager: Danny Rawlins, crux at romster dot me
|
|
# Depends on: libtiff libungif xorg
|
|
|
|
name=xplanet
|
|
version=1.3.0
|
|
release=1
|
|
source=(http://downloads.sourceforge.net/project/$name/$name/$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--mandir=/usr/man
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
find $PKG -name "README" -type f -delete
|
|
}
|