This commit is contained in:
Carsten Teibes 2014-01-08 22:39:48 +01:00
parent 9c9d0c7e88
commit 8205a048ec
2 changed files with 6 additions and 6 deletions

View file

@ -6,7 +6,7 @@ pkgbase = pywiiload-git
arch = any
license = GPL3
depends = python
source = pywiiload::git://github.com/dniMretsaM/PyWiiLoad.git
source = pywiiload::git+https://github.com/dniMretsaM/PyWiiLoad.git
md5sums = SKIP
pkgname = pywiiload-git

View file

@ -1,4 +1,4 @@
# Maintainer: carstene1ns <arch carsten-teibes de>
# Maintainer: carstene1ns <url/mail: arch carsten-teibes de>
_pkgbase=pywiiload
pkgname=$_pkgbase-git
@ -9,18 +9,18 @@ arch=('any')
url='http://wiibrew.org/wiki/PyWiiLoad'
license=('GPL3')
depends=('python')
source=("$_pkgbase::git://github.com/dniMretsaM/PyWiiLoad.git")
source=($_pkgbase::"git+https://github.com/dniMretsaM/PyWiiLoad.git")
md5sums=('SKIP')
prepare() {
cd "$srcdir/$_pkgbase"
cd $_pkgbase
# fix executable name in help message
sed -i "s|^\./wiiload.py /|pywiiload |" wiiload.py
}
package() {
cd "$srcdir/$_pkgbase"
cd $_pkgbase
install -Dm755 wiiload.py $pkgdir/usr/bin/pywiiload
install -Dm755 wiiload.py "$pkgdir"/usr/bin/pywiiload
}