diff options
Diffstat (limited to 'community/freedroid/PKGBUILD')
-rw-r--r-- | community/freedroid/PKGBUILD | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/community/freedroid/PKGBUILD b/community/freedroid/PKGBUILD new file mode 100644 index 000000000..819f25b31 --- /dev/null +++ b/community/freedroid/PKGBUILD @@ -0,0 +1,20 @@ +# $Id: PKGBUILD 5262 2009-11-07 12:52:52Z ibiru $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> + +pkgname=freedroid +pkgver=1.0.2 +pkgrel=4 +pkgdesc="Freedroid is a clone of the classic game "Paradroid" on Commodore 64 with some improvements and extensions to the classic version." +arch=('i686' 'x86_64') +url="http://freedroid.sourceforge.net/" +license=('GPL') +depends=('glibc' 'sdl_image' 'sdl_mixer') +source=(http://downloads.sourceforge.net/sourceforge/freedroid/$pkgname-$pkgver.tar.gz) +md5sums=('585a65f61c2cd308ab45d5c514f695dc') + +build() { + cd $startdir/src/$pkgname-$pkgver + ./configure --prefix=/usr --mandir=/usr/share + make || return 1 + make DESTDIR=$startdir/pkg install +} |