40 lines
1.1 KiB
Bash
40 lines
1.1 KiB
Bash
# Template file for 'vice'
|
|
pkgname=vice
|
|
version=3.1
|
|
revision=2
|
|
build_style=gnu-configure
|
|
configure_args="
|
|
$(vopt_enable sdl2 sdlui2)
|
|
$(vopt_with sdl2 sdlsound)
|
|
$(vopt_enable gtk3 gnomeui3)
|
|
$(vopt_with gtk3 pulse)
|
|
--disable-option-checking
|
|
--enable-cpuhistory"
|
|
hostmakedepends="pkg-config bdftopcf mkfontdir flex"
|
|
makedepends="
|
|
zlib-devel
|
|
readline-devel
|
|
libpng-devel
|
|
giflib-devel
|
|
$(vopt_if sdl2 SDL2_mixer-devel)
|
|
$(vopt_if sdl2 SDL2-devel)
|
|
$(vopt_if gtk3 gtk+3-devel)
|
|
$(vopt_if gtk3 pulseaudio-devel)
|
|
$(vopt_if gtk3 pango-devel)"
|
|
short_desc="Emulator for C64, C128, CBM-II, PET, VIC20, Plus4 and C16"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="GPL-2"
|
|
homepage="http://vice-emu.sourceforge.net/"
|
|
distfiles="${SOURCEFORGE_SITE}/vice-emu/$pkgname-$version.tar.gz"
|
|
checksum=3eb8159633816095006dec36c5c3edd055a87fd8bda193a1194a6801685d1240
|
|
|
|
# Package build options
|
|
build_options="sdl2 gtk3"
|
|
build_options_default="gtk3"
|
|
|
|
pre_configure() {
|
|
# Do not install data to /usr/lib64
|
|
sed -i 's:VICEDIR=.*:VICEDIR="$PREFIX/share/vice":g' configure
|
|
# __u_char is not portable...
|
|
sed -i 's,__u_char,unsigned char,g' src/*.[ch]
|
|
}
|