diff options
author | WorMzy Tykashi | 2015-10-04 02:49:19 +0100 |
---|---|---|
committer | WorMzy Tykashi | 2015-10-04 02:49:19 +0100 |
commit | 55a4218bf32836d89914130b9da3dcaaecbd13ac (patch) | |
tree | 6d0862e1340665abd15ef0eaa76232b196bcd3a4 /PKGBUILD | |
download | aur-55a4218bf32836d89914130b9da3dcaaecbd13ac.tar.gz |
Initial upload to AUR4
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 00000000000..d97b697ea53 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,34 @@ +# Maintainer: WorMzy Tykashi <wormzy.tykashi@gmail.com> +# Contributer: Fincer <fincer89@hotmail.com> + +pkgname=pcsxr-gtk2 +_pkgname=pcsxr +pkgver=1.9.92 +pkgrel=1 +pkgdesc='A Sony PlayStation (PSX) emulator based on the PCSX-df project (Gtk2 version)' +arch=('i686' 'x86_64') +url='http://pcsxr.codeplex.com/' +license=('GPL') +conflicts=('pcsxr') +depends=('libcdio' 'libgl' 'libglade' 'libxtst' 'libxv' 'sdl') +makedepends=('mesa') +makedepends_i686+=('nasm') + +# Accessible through /srv/ftp/other/community on nymeria. +source=("https://sources.archlinux.org/other/community/pcsxr/pcsxr-${pkgver}.tar.bz2" +"link_order.patch") + +md5sums=('28411aed0b4424f97227d94bdefaec83' + 'ce021bfc4c19e553a2cdb95b7ca1eb01') + +build() { + cd "$srcdir/$_pkgname-$pkgver" + patch -Np1 -i "$srcdir/link_order.patch" + ./configure --prefix=/usr --enable-libcdio --enable-opengl + make +} + +package() { + cd "$srcdir/$_pkgname-$pkgver" + make DESTDIR="$pkgdir" install +} |