diff options
author | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2013-06-25 01:55:22 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2013-06-25 01:55:22 -0300 |
commit | 6a4d0f61bf73bf185c20cc0a01ef1907874edd3c (patch) | |
tree | 259ddedc939d64d1aaf57fe7a510c3991ed12424 /pcr/renpy/PKGBUILD | |
parent | 2e801c51aad527e5ae0b2f27cc6a72a5a3e4ba3c (diff) | |
download | abslibre-6a4d0f61bf73bf185c20cc0a01ef1907874edd3c.tar.gz abslibre-6a4d0f61bf73bf185c20cc0a01ef1907874edd3c.tar.bz2 abslibre-6a4d0f61bf73bf185c20cc0a01ef1907874edd3c.zip |
renpy: fix some things on PKGBUILD
Diffstat (limited to 'pcr/renpy/PKGBUILD')
-rw-r--r-- | pcr/renpy/PKGBUILD | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/pcr/renpy/PKGBUILD b/pcr/renpy/PKGBUILD index a4cf45d6f..1ed569477 100644 --- a/pcr/renpy/PKGBUILD +++ b/pcr/renpy/PKGBUILD @@ -1,11 +1,13 @@ # Maintainer: AlexanderR <rvacheva at nxt dot ru> +# Maintainer (Parabola): Márcio Silva <coadde@lavabit.com> + pkgname=renpy pkgver=6.15.5 pkgrel=1 pkgdesc="Ren'Py is a visual novel engine that helps you use words, images, and sounds to tell stories with the computer. This package contains both player and development tools." arch=('any') license=('MIT') -url='http://www.renpy.org' +url='http://www.renpy.org/' # is ttf-dejavu required by renpy or games itself? depends=("python-renpy=$pkgver" 'ttf-dejavu') options=(!strip !zipman) @@ -32,7 +34,7 @@ build() { patch -p1 < ../python2.diff # fonts are provided by ttf-dejavu - cd renpy + cd $pkgname rm common/DejaVuSans.ttf common/DejaVuSans.txt } @@ -47,7 +49,7 @@ package(){ cd renpy-$pkgver-source - cp -r launcher renpy renpy.py renpy/common template the_question tutorial "$pkgdir/usr/share/$pkgname" + cp -r launcher $pkgname{,.py} $pkgname/common template the_question tutorial "$pkgdir/usr/share/$pkgname" cp -r doc/* "$pkgdir/usr/share/doc/$pkgname" install -D -m644 launcher/game/logo.png "$pkgdir/usr/share/pixmaps/${pkgname}.png" install -D -m644 'LICENSE.txt' "$pkgdir/usr/share/licenses/$pkgname/LICENSE" |