mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
21 lines
674 B
Bash
21 lines
674 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
||
|
|
||
|
pkgname=freedroid
|
||
|
pkgver=1.0.2
|
||
|
pkgrel=3
|
||
|
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
|
||
|
make || return 1
|
||
|
make DESTDIR=$startdir/pkg install
|
||
|
}
|