wok-next rev 9276
Add freedoom.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Tue Mar 15 20:28:23 2011 +0000 (2011-03-15) |
parents | 7b224857e9bd |
children | c16b99eee970 |
files | freedoom/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/freedoom/receipt Tue Mar 15 20:28:23 2011 +0000 1.3 @@ -0,0 +1,28 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="freedoom" 1.7 +VERSION="0.7" 1.8 +CATEGORY="games" 1.9 +SHORT_DESC="completely free Doom IWADS (game data)" 1.10 +MAINTAINER="slaxemulator@gmail.com" 1.11 +BUILD_DEPENDS="deutex-devel python git ghostscript imagemagick" 1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.13 +WEB_SITE="http://www.nongnu.org/freedoom/" 1.14 +WGET_URL="http://savannah.nongnu.org/download/$PACKAGE/source/$TARBALL" 1.15 + 1.16 +# Rules to configure and make the package. 1.17 +compile_rules() 1.18 +{ 1.19 + cd $src 1.20 + make -j1 1.21 + mkdir -p $DESTDIR/usr/share/doom 1.22 + cp -a $src/wads/*.wad $DESTDIR/usr/share/doom 1.23 +} 1.24 + 1.25 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.26 +genpkg_rules() 1.27 +{ 1.28 + mkdir -p $fs/usr 1.29 + cp -a $_pkg/usr/share $fs/usr 1.30 +} 1.31 +