mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
79 lines
1.8 KiB
Bash
79 lines
1.8 KiB
Bash
# $Id$
|
|
# Maintainer: Maxime Gauduin <alucryd@archlinux.org>
|
|
# Contributor: Bartłomiej Piotrowski <nospam@bpiotrowski.pl>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - disable LTO: -DENABLE_LTO='FALSE'
|
|
|
|
pkgbase=vbam
|
|
pkgname=('vbam-sdl' 'vbam-wx')
|
|
pkgver=2.1.0
|
|
pkgrel=2
|
|
pkgdesc='Nintendo GameBoy Advance emulator'
|
|
arch=('x86_64')
|
|
url='http://vba-m.com'
|
|
license=('GPL2')
|
|
depends=('gcc-libs' 'glibc' 'libgl' 'libpng' 'sdl2' 'sfml' 'zlib')
|
|
makedepends=('cmake' 'ffmpeg' 'git' 'libglvnd' 'wxgtk3' 'zip')
|
|
source=("git+https://github.com/visualboyadvance-m/visualboyadvance-m.git#tag=v${pkgver}")
|
|
sha256sums=('SKIP')
|
|
|
|
prepare() {
|
|
for p in sdl wx; do
|
|
if [[ -d build-$p ]]; then
|
|
rm -rf build-$p
|
|
fi
|
|
mkdir build-$p
|
|
done
|
|
|
|
cd visualboyadvance-m
|
|
|
|
git cherry-pick -n a8d0508cf299a58b2a659d6017b049db121de8ba #FS59479
|
|
}
|
|
|
|
build() {
|
|
cd build-sdl
|
|
|
|
cmake ../visualboyadvance-m \
|
|
-DCMAKE_BUILD_TYPE='Release' \
|
|
-DCMAKE_INSTALL_PREFIX='/usr' \
|
|
-DCMAKE_SKIP_RPATH='TRUE' \
|
|
-DENABLE_SDL='TRUE' \
|
|
-DENABLE_WX='FALSE' \
|
|
-DENABLE_LINK='TRUE' \
|
|
-DENABLE_LTO='FALSE'
|
|
make
|
|
|
|
cd ../build-wx
|
|
|
|
cmake ../visualboyadvance-m \
|
|
-DCMAKE_BUILD_TYPE='Release' \
|
|
-DCMAKE_INSTALL_PREFIX='/usr' \
|
|
-DCMAKE_SKIP_RPATH='TRUE' \
|
|
-DENABLE_SDL='FALSE' \
|
|
-DENABLE_WX='TRUE' \
|
|
-DENABLE_FFMPEG='TRUE' \
|
|
-DENABLE_LINK='TRUE' \
|
|
-DENABLE_LTO='FALSE' \
|
|
-DwxWidgets_CONFIG_EXECUTABLE='/usr/bin/wx-config-gtk3'
|
|
make
|
|
}
|
|
|
|
package_vbam-sdl() {
|
|
backup=('etc/vbam.cfg')
|
|
conflicts=('vbam-wx')
|
|
|
|
make DESTDIR="${pkgdir}" -C build-sdl install
|
|
}
|
|
|
|
package_vbam-wx() {
|
|
depends+=(
|
|
'glib2' 'gtk3' 'openal' 'wxgtk3' 'zip'
|
|
'libavcodec.so' 'libavformat.so' 'libavutil.so' 'libswscale.so'
|
|
)
|
|
conflicts=('vbam-sdl')
|
|
|
|
make DESTDIR="${pkgdir}" -C build-wx install
|
|
}
|
|
|
|
# vim: ts=2 sw=2 et:
|