diff options
author | root <root@rshg054.dnsready.net> | 2012-02-12 23:15:07 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-02-12 23:15:07 +0000 |
commit | 0020cc650ff973f269f23332e82fc097254d0adc (patch) | |
tree | 4eb4ed0d80064cbc09ee64ac2f9a4dc53ef2fb89 /community/desmume | |
parent | cfceb92e73d7f6a32494f0ba258b98748af43f34 (diff) |
Sun Feb 12 23:15:07 UTC 2012
Diffstat (limited to 'community/desmume')
-rw-r--r-- | community/desmume/PKGBUILD | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/community/desmume/PKGBUILD b/community/desmume/PKGBUILD new file mode 100644 index 000000000..65a01fb7d --- /dev/null +++ b/community/desmume/PKGBUILD @@ -0,0 +1,34 @@ +# $Id: PKGBUILD 38953 2011-02-03 21:59:54Z bfanella $ +# Maintainer: Jonathan Conder <jonno dot conder at gmail dot com> +# Maintainer: Brad Fanella <bradfanella@archlinux.us> +# Contributor: Arkham <arkham at archlinux dot us> +# Contributor: Nathan Jones <nathanj@insightbb.com> +# Contributor: Javier "Phrodo_00" Aravena <phrodo.00 at gmail dot com> +# Contributor: angvp <angvp at archlinux dot us> +# Contributor: Allan <mcrae_allan at hotmail dot com> +# Contributor: w0rm <w0rmtux at gmail dot com> +# Contributor: vEX <vex at niechift dot com> +# Contributor: Asher256 <achrafcherti at gmail dot com> + +pkgname=desmume +pkgver=0.9.7 +pkgrel=3 +pkgdesc="Nintendo DS emulator" +arch=('i686' 'x86_64') +url="http://desmume.org/" +license=('GPL') +depends=('agg' 'gtkglext' 'intltool' 'libgl' 'libglade' 'mesa') +replaces=('desmume-core' 'desmume-cli' 'desmume-gtk' 'desmume-glade') +source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz") +sha256sums=('0a0f7ef3cc76ff0bbc6f3df47c3689653617074ea7ffc354e9fa1240c5336523') + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr --enable-wifi + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir/" install +} |