29 lines
906 B
Bash
29 lines
906 B
Bash
# Template file for 'mupen64plus'
|
|
pkgname=mupen64plus
|
|
version=2.5.9
|
|
revision=1
|
|
archs="x86_64* i686*"
|
|
wrksrc="mupen64plus-bundle-src-${version}"
|
|
hostmakedepends="pkg-config which nasm"
|
|
makedepends="boost-devel SDL2-devel speexdsp-devel freetype-devel glu-devel libpng-devel libsamplerate-devel"
|
|
depends="desktop-file-utils"
|
|
short_desc="Nintendo64 Emulator"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="GPL-2.0-only"
|
|
homepage="http://www.mupen64plus.org"
|
|
distfiles="https://github.com/mupen64plus/mupen64plus-core/releases/download/${version}/${pkgname}-bundle-src-${version}.tar.gz"
|
|
checksum=d5243ddc00388ee2e538b3826a78a719dec2bd5da54ac6f3344fed861fb141a8
|
|
nopie=yes
|
|
nocross=yes
|
|
|
|
CFLAGS="-fcommon"
|
|
|
|
do_build() {
|
|
sh m64p_build.sh
|
|
}
|
|
do_install() {
|
|
./m64p_install.sh DESTDIR=${DESTDIR} PREFIX=/usr MANDIR=/usr/share/man
|
|
# Remove devel files, not interested on it.
|
|
rm -rf ${DESTDIR}/usr/include
|
|
}
|