21 lines
601 B
Bash
21 lines
601 B
Bash
# Template file for 'stella'
|
|
pkgname=stella
|
|
version=5.0.2
|
|
revision=1
|
|
build_style=gnu-configure
|
|
makedepends="SDL2-devel glu-devel libpng-devel zlib-devel"
|
|
short_desc="A multi-platform Atari 2600 VCS Emulator"
|
|
maintainer="Diogo Leal <diogo@diogoleal.com>"
|
|
license="GPL-2"
|
|
homepage="https://stella-emu.github.io/"
|
|
distfiles="https://github.com/stella-emu/stella/releases/download/${version}/stella-${version}-src.tar.xz"
|
|
checksum=74ee708b68340b65519a04a22c61921cdcf69a1d308600c212414b28e9e689ac
|
|
|
|
do_configure() {
|
|
./configure --prefix=/usr
|
|
}
|
|
|
|
do_install() {
|
|
make DESTDIR=$DESTDIR install
|
|
vbin stella
|
|
}
|