diff options
author | Emmanuel Gil Peyrot | 2015-09-13 13:29:29 +0100 |
---|---|---|
committer | Emmanuel Gil Peyrot | 2015-09-13 13:29:29 +0100 |
commit | 96d7d1a4d98970b7b4d58fb05f28ca539ecfd8e4 (patch) | |
tree | 8e3f3bfe5ddb40fde66332b1974c8d49f3aa75cb /PKGBUILD | |
parent | 228af8f6da80753ec0310f9eaacf7d9bb4e344ae (diff) | |
download | aur-96d7d1a4d98970b7b4d58fb05f28ca539ecfd8e4.tar.gz |
Don’t duplicate the glfw binary in both packages.
This fixes a regression introduced by Citra PR #910
(https://github.com/citra-emu/citra/pull/910) which made both packages
of this split non-installable together.
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ _pkgbase='citra' pkgbase="$_pkgbase-git" pkgname=("$_pkgbase-git" "$_pkgbase-qt-git") -pkgver=r2266.3d44dc4 +pkgver=r2957.5fdfd78 pkgrel=1 pkgdesc="An experimental open-source Nintendo 3DS emulator/debugger" arch=('i686' 'x86_64') @@ -51,5 +51,5 @@ package_citra-qt-git() { cd "$srcdir/$_pkgbase/build" make DESTDIR="$pkgdir/" install - install -Dm755 src/citra_qt/citra-qt "$pkgdir/usr/bin/$_pkgbase-qt" + rm "$pkgdir/usr/bin/$_pkgbase" } |