diff options
author | Matthew Scheirer | 2016-06-06 16:37:43 -0400 |
---|---|---|
committer | Matthew Scheirer | 2016-06-06 16:37:43 -0400 |
commit | 85d24f4161ba9c03b075cef5560787936b4a0825 (patch) | |
tree | 6b0bca4bbff13fdd98d72f827931b6238979a542 | |
download | aur-85d24f4161ba9c03b075cef5560787936b4a0825.tar.gz |
Initial commit
-rw-r--r-- | .SRCINFO | 21 | ||||
-rw-r--r-- | PKGBUILD | 24 |
2 files changed, 45 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..46eb3f948212 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,21 @@ +# Generated by mksrcinfo v8 +# Mon Jun 6 20:37:34 UTC 2016 +pkgbase = m64py-git + pkgdesc = A frontend for Mupen64Plus + pkgver = 0.2.3.r11.80555df + pkgrel = 1 + url = http://m64py.sourceforge.net/ + arch = any + license = GPL + makedepends = git + makedepends = python-setuptools + depends = mupen64plus + depends = python-pyqt5 + depends = sdl2 + provides = m64py + conflicts = m64py + source = git://github.com/mupen64plus/mupen64plus-ui-python.git + md5sums = SKIP + +pkgname = m64py-git + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..b20aed05b2a7 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,24 @@ +pkgname=m64py-git +_gitname=mupen64plus-ui-python +pkgver=0.2.3.r11.80555df +pkgrel=1 +pkgdesc='A frontend for Mupen64Plus' +arch=('any') +url='http://m64py.sourceforge.net/' +license=('GPL') +depends=(mupen64plus python-pyqt5 sdl2) +makedepends=(git python-setuptools) +conflicts=(m64py) +provides=(m64py) +source=("git://github.com/mupen64plus/$_gitname.git") +md5sums=('SKIP') + +pkgver() { + cd "$srcdir/$_gitname" + printf "%s" "$(git describe --long --tags | sed 's/\([^-]*-\)g/r\1/;s/-/./g')" +} + +package() { + cd "$srcdir/$_gitname" + python setup.py install --root="$pkgdir" +} |