wok view mupen64plus/receipt @ rev 23950

syslinux/taziso: fix tazbootkey
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Sep 20 21:21:51 2020 +0000 (2020-09-20)
parents 238f49914432
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="mupen64plus"
4 VERSION="2.5.9"
5 CATEGORY="games"
6 TAGS="emulator nintendo64"
7 SHORT_DESC="Nintendo64 Emulator"
8 MAINTAINER="slaxemulator@gmail.com"
9 LICENSE="GPL2"
10 WEB_SITE="http://www.mupen64plus.org/"
12 TARBALL="$PACKAGE-bundle-src-$VERSION.tar.gz"
13 WGET_URL="https://github.com/mupen64plus/mupen64plus-core/releases/download/$VERSION/$TARBALL"
15 DEPENDS="bzlib freetype libboost-filesystem libglu-mesa libsamplerate libsdl2
16 speex"
17 BUILD_DEPENDS="gtk+-dev libboost-filesystem-dev libglu-mesa libglu-mesa-dev
18 libsamplerate-dev libsdl2-dev libsdl-ttf-dev mesa-dev nasm speex-dev
19 yasm zlib-dev"
21 # Rules to configure and make the package.
22 compile_rules()
23 {
24 find $src -name Makefile | xargs sed -i 's|uname -m|echo i486|'
25 export PREFIX=/usr
26 export DESTDIR=$install
28 ./m64p_build.sh &&
29 ./m64p_install.sh
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 cp -a $install/* $fs
36 rm -r $fs/usr/include
37 find $fs -name '*.so*' -exec chmod a+x \{\} \;
38 }