29 lines
895 B
Bash
29 lines
895 B
Bash
# Template file for 'stella'
|
|
pkgname=stella
|
|
version=5.1.3
|
|
revision=1
|
|
build_style=configure
|
|
configure_args="--prefix=/usr"
|
|
hostmakedepends="pkg-config"
|
|
makedepends="SDL2-devel glu-devel libpng-devel zlib-devel"
|
|
depends="desktop-file-utils hicolor-icon-theme"
|
|
short_desc="Multi-platform Atari 2600 VCS Emulator"
|
|
maintainer="Diogo Leal <diogo@diogoleal.com>"
|
|
license="GPL-2.0-or-later, BSD-3-Clause"
|
|
homepage="https://stella-emu.github.io/"
|
|
distfiles="https://github.com/stella-emu/stella/releases/download/${version}/stella-${version}-src.tar.xz"
|
|
checksum=e074317c25e5d4cabec4558909d301c3a7654ad620863f05d342244fe6bdfe0a
|
|
|
|
post_extract() {
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
*-musl)
|
|
sed -i 's/::PAGE_SIZE/::_PAGE_SIZE/g' $(grep -r '::PAGE_SIZE' -l)
|
|
sed -i 's/PAGE_SIZE/_PAGE_SIZE/g' src/emucore/MT24LC256.[ch]xx \
|
|
src/emucore/System.hxx
|
|
;;
|
|
esac
|
|
}
|
|
|
|
post_install() {
|
|
vlicense Copyright.txt
|
|
}
|