higan-qt: update to 101

This commit is contained in:
gnastyle 2016-08-17 14:49:41 +02:00
parent 27bb710540
commit c4452caccd
2 changed files with 57 additions and 37 deletions

View File

@ -0,0 +1,38 @@
diff -rupN higan_v097-source.orig/higan/GNUmakefile higan_v097-source/higan/GNUmakefile
--- higan_v097-source.orig/higan/GNUmakefile 2016-01-24 09:21:45.822940200 +0100
+++ higan_v097-source/higan/GNUmakefile 2016-01-24 09:24:03.028722500 +0100
@@ -36,7 +36,7 @@ ifeq ($(platform),windows)
else ifeq ($(platform),macosx)
flags += -march=native
else ifneq ($(filter $(platform),linux bsd),)
- flags += -march=native -fopenmp
+ flags += -fopenmp
link += -fopenmp
link += -Wl,-export-dynamic
link += -lX11 -lXext
diff -rupN higan_v097-source.orig/nall/GNUmakefile higan_v097-source/nall/GNUmakefile
--- higan_v097-source.orig/nall/GNUmakefile 2016-01-24 09:21:46.021749600 +0100
+++ higan_v097-source/nall/GNUmakefile 2016-01-24 09:25:06.347100800 +0100
@@ -40,8 +40,8 @@ cflags := -x c -std=c99
objcflags := -x objective-c -std=c99
cppflags := -x c++ -std=c++14
objcppflags := -x objective-c++ -std=c++14
-flags :=
-link :=
+flags := $(CXXFLAGS)
+link := $(LDFLAGS)
# compiler detection
ifeq ($(compiler),)
@@ -51,9 +51,9 @@ ifeq ($(compiler),)
else ifeq ($(platform),macosx)
compiler := clang++
else ifeq ($(platform),linux)
- compiler := g++-4.9
+ compiler := g++
else ifeq ($(platform),bsd)
- compiler := g++49
+ compiler := g++
else
compiler := g++
endif

View File

@ -1,11 +1,7 @@
# Note: Newer versions of higan do not provide a Qt GUI. We should probably
# drop this package at some point, and simply keep the regular, up-to-date
# version of higan in the CCR.
pkgname=higan-qt pkgname=higan-qt
_pkgname=higan _pkgname=higan
pkgver=094 pkgver=101
pkgrel=2 pkgrel=1
pkgdesc='Nintendo multi-system emulator' pkgdesc='Nintendo multi-system emulator'
arch=('x86_64') arch=('x86_64')
url='http://byuu.org/' url='http://byuu.org/'
@ -15,47 +11,33 @@ makedepends=('mesa')
optdepends=('beat: Delta patcher') optdepends=('beat: Delta patcher')
provides=("higan=${pkgver}") provides=("higan=${pkgver}")
conflicts=('higan-gtk' 'higan') conflicts=('higan-gtk' 'higan')
source=("https://gitlab.com/higan/higan/repository/archive.tar.gz?ref=v${pkgver}" source=("http://download.byuu.org/higan_v${pkgver}-source.7z"
'higan') '0001-higan-flags.patch')
md5sums=('7568af5467b435d94ea51f35554647d4' sha1sums=('c877108f2554c74e8a8aafea84b432bd8e988d9d'
'87fe11373998b6e164c3e77abecb23c8') '875c78770b845880d3786b5c2a4f7926c5211e14')
_profiles='accuracy balanced performance'
prepare() { prepare() {
cd ${srcdir}/higan-v${pkgver}-* cd ${srcdir}/higan_v${pkgver}-source
sed "s/-march=native/-march=${CARCH/_/-} -mtune=generic/g" -i Makefile patch -Np1 -i ../0001-higan-flags.patch
moc -i -Iphoenix/qt/ -o phoenix/qt/platform.moc phoenix/qt/platform.moc.hpp
} }
build() { build() {
cd ${srcdir}/higan-v${pkgver}-* cd ${srcdir}/higan_v${pkgver}-source
make phoenix=qt -C ananke export hiro=qt
make -C icarus
for _profile in ${_profiles}; do make -C higan
make phoenix=qt profile=${_profile}
mv out/higan{,-${_profile}}
make clean
done
} }
package() { package() {
cd ${srcdir}/higan-v${pkgver}-* cd ${srcdir}/higan_v${pkgver}-source
install -dm 755 "${pkgdir}"/usr/{bin,lib,share/{applications,pixmaps,higan/Video\ Shaders}} install -dm 755 "${pkgdir}"/usr/{bin,share/{applications,higan,pixmaps}}
install -m 755 {..,"${pkgdir}"/usr/bin}/higan install -m 755 icarus/out/icarus "${pkgdir}"/usr/bin/
install -m 644 data/higan.desktop "${pkgdir}"/usr/share/applications/ install -m 755 higan/out/higan "${pkgdir}"/usr/bin/
install -m 644 data/higan.png "${pkgdir}"/usr/share/pixmaps/ install -m 644 higan/data/higan.desktop "${pkgdir}"/usr/share/applications/
cp -dr --no-preserve=ownership profile/* data/cheats.bml "${pkgdir}"/usr/share/higan/ install -m 644 higan/data/higan.png "${pkgdir}"/usr/share/pixmaps/
cp -dr --no-preserve=ownership shaders/*.shader "${pkgdir}"/usr/share/higan/Video\ Shaders/ cp -dr --no-preserve='ownership' higan/systems/* higan/data/cheats.bml "${pkgdir}"/usr/share/higan/
install -m 644 ananke/libananke.so "${pkgdir}"/usr/lib/libananke.so.1
ln -s libananke.so.1 "${pkgdir}"/usr/lib/libananke.so
for _profile in ${_profiles}; do
install -m 755 {out,"${pkgdir}"/usr/bin}/higan-${_profile}
done
} }