c8ee909417
Signed-off-by: Jürgen Buchmüller <pullmoll@t-online.de>
26 lines
719 B
Bash
26 lines
719 B
Bash
# Template file for 'vgmplay'
|
|
pkgname=vgmplay
|
|
version=0.40.8
|
|
revision=1
|
|
build_style=gnu-makefile
|
|
build_wrksrc="VGMPlay"
|
|
makedepends="libao-devel zlib-devel"
|
|
short_desc="VGM file player"
|
|
maintainer="Jürgen Buchmüller <pullmoll@t-online.de>"
|
|
license="GPL-2.0-or-later"
|
|
homepage="https://github.com/vgmrips/vgmplay/"
|
|
distfiles="https://github.com/vgmrips/vgmplay/archive/${version}.tar.gz>${pkgname}-${version}.tar.gz"
|
|
checksum=3713c8d36202d944e23988e39c9d09f3adf87ef4186c5140841b7dbf419db378
|
|
|
|
LDFLAGS="-lm -pthread -lao -lz"
|
|
|
|
pre_build() {
|
|
sed -i Makefile -e "s;CC = gcc;CC = $CC;"
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
mips-*|mipshf-*) sed -i Makefile -e"s;BYTE_ORDER =;& 2;" ;;
|
|
esac
|
|
}
|
|
|
|
pre_install() {
|
|
vmkdir usr/bin
|
|
}
|