diff options
author | Carsten Teibes | 2014-03-26 17:59:32 +0100 |
---|---|---|
committer | Carsten Teibes | 2014-03-26 17:59:32 +0100 |
commit | 6a9af6096a76d09b0f2b60c7a543984e85935724 (patch) | |
tree | 52824cae94e1684704578d8268eff7111eac24d8 | |
parent | 69dd7ffc37bb4c73244c2067d518d827dbba1adf (diff) | |
download | aur-6a9af6096a76d09b0f2b60c7a543984e85935724.tar.gz |
[upd], [fix] rework dependencies
Removed wine, as it has to be explicitely enabled.
-rw-r--r-- | .SRCINFO | 5 | ||||
-rw-r--r-- | PKGBUILD | 11 |
2 files changed, 8 insertions, 8 deletions
@@ -1,6 +1,6 @@ pkgbase = easyrpg-player-git pkgdesc = FLOSS RPG Maker 2000/2003 and EasyRPG games interpreter (development version) - pkgver = 0.1.2.r217.gc52a6f6 + pkgver = 0.1.2.r219.g81330d0 pkgrel = 1 url = https://easy-rpg.org/ install = easyrpg-player.install @@ -9,12 +9,11 @@ pkgbase = easyrpg-player-git license = GPL3 makedepends = boost makedepends = git - makedepends = liblcf-git + depends = liblcf-git depends = sdl2_mixer depends = freetype2 depends = pixman depends = expat - optdepends = wine: to use RTP(E) installed with wine provides = easyrpg-player conflicts = easyrpg-player source = easyrpg-player::git+https://github.com/EasyRPG/Player.git @@ -2,7 +2,7 @@ _pkgbase=easyrpg-player pkgname=$_pkgbase-git -pkgver=0.1.2.r217.gc52a6f6 +pkgver=0.1.2.r219.g81330d0 pkgrel=1 pkgdesc="FLOSS RPG Maker 2000/2003 and EasyRPG games interpreter (development version)" arch=('i686' 'x86_64') @@ -10,9 +10,8 @@ url="https://easy-rpg.org/" license=('GPL3') conflicts=("$_pkgbase") provides=("$_pkgbase") -makedepends=('boost' 'git' 'liblcf-git') -depends=('sdl2_mixer' 'freetype2' 'pixman' 'expat') -optdepends=('wine: to use RTP(E) installed with wine') +makedepends=('boost' 'git') +depends=('liblcf-git' 'sdl2_mixer' 'freetype2' 'pixman' 'expat') install=$_pkgbase.install source=($_pkgbase::"git+https://github.com/EasyRPG/Player.git") md5sums=('SKIP') @@ -31,5 +30,7 @@ build () { } package () { - install -Dm755 $_pkgbase/src/$_pkgbase "$pkgdir"/usr/bin/$_pkgbase + cd $_pkgbase + + make DESTDIR="$pkgdir/" install } |