diff options
author | Bartłomiej Piotrowski | 2018-01-07 18:35:39 +0100 |
---|---|---|
committer | Bartłomiej Piotrowski | 2018-01-07 18:35:39 +0100 |
commit | 01f794aaad5a33f9417f66663891d60b5c5e5a06 (patch) | |
tree | 9d43c2767c87ebd1bf3ce36d92bb1f653f8f37c3 | |
download | aur-01f794aaad5a33f9417f66663891d60b5c5e5a06.tar.gz |
Import from official repositories
-rw-r--r-- | .SRCINFO | 22 | ||||
-rw-r--r-- | ChangeLog | 12 | ||||
-rw-r--r-- | PKGBUILD | 27 |
3 files changed, 61 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 00000000000..5d20ad4cbb5 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,22 @@ +pkgbase = nestopia + pkgdesc = An NES emulator featuring cycle exact emulation, a ridiculous number of mappers, and lots of custom sound chips. + pkgver = 1.48 + pkgrel = 1 + url = http://0ldsk00l.ca/nestopia/ + arch = x86_64 + license = GPL + makedepends = unzip + makedepends = mesa + makedepends = xdg-utils + makedepends = cmake + depends = sdl2 + depends = alsa-lib + depends = gtk3 + depends = glu + depends = libarchive + depends = libao + source = nestopia-1.48.tar.gz::https://github.com/rdanbrook/nestopia/tarball/1.48 + sha256sums = ee14b9476748669ac1af73116beb2a6e3dd6b41c0b1d2f7149fb8716bb02d749 + +pkgname = nestopia + diff --git a/ChangeLog b/ChangeLog new file mode 100644 index 00000000000..5077d00b20e --- /dev/null +++ b/ChangeLog @@ -0,0 +1,12 @@ +2008-12-16 Tiago Pierezan Camargo <tcamargo@gmail.com> + + * PKGBUILD: Minor corrections. + +2008-12-04 Tiago Pierezan Camargo <tcamargo@gmail.com> + + * PKGBUILD (source): Package adopted. + Variable/version cleanup. + Patch to remove bogus error messages on program exit. + New dependency: mesa. + Renamed executable to nestopia. + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 00000000000..426c0919f98 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 266875 2017-11-15 14:29:11Z foutrelis $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: Tiago Pierezan Camargo <tcamargo@gmail.com> +# Contributor: robb_force <robb_force@holybuffalo.net> + +pkgname=nestopia +pkgver=1.48 +pkgrel=1 +pkgdesc='An NES emulator featuring cycle exact emulation, a ridiculous number of mappers, and lots of custom sound chips.' +url='http://0ldsk00l.ca/nestopia/' +license=('GPL') +arch=('x86_64') +depends=('sdl2' 'alsa-lib' 'gtk3' 'glu' 'libarchive' 'libao') +makedepends=('unzip' 'mesa' 'xdg-utils' 'cmake') +source=("$pkgname-$pkgver.tar.gz::https://github.com/rdanbrook/nestopia/tarball/$pkgver") +sha256sums=('ee14b9476748669ac1af73116beb2a6e3dd6b41c0b1d2f7149fb8716bb02d749') + +build() { + cd "$srcdir"/rdanbrook-nestopia-* + cmake -DCMAKE_INSTALL_PREFIX=/usr . + make +} + +package() { + cd "$srcdir"/rdanbrook-nestopia-* + make install DESTDIR="$pkgdir" +} |