wok view mupen64plus/receipt @ rev 18897

syslinux/isohybrid.exe add -r support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 14 22:06:06 2016 +0100 (2016-02-14)
parents bb009a6ef036
children 3705d68ed8f3
line source
1 # SliTaz package receipt.
3 PACKAGE="mupen64plus"
4 VERSION="2.5"
5 CATEGORY="games"
6 SHORT_DESC="Nintendo64 Emulator"
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-bundle-src-$VERSION.tar.gz"
10 WEB_SITE="http://www.mupen64plus.org/"
11 WGET_URL="https://github.com/mupen64plus/mupen64plus-core/releases/download/$VERSION/$TARBALL"
12 TAGS="emulator nintendo64"
14 DEPENDS="bzlib freetype libboost-filesystem libglu-mesa libsamplerate libsdl \
15 speex"
16 BUILD_DEPENDS="gtk+-dev libboost-filesystem-dev libglu-mesa libglu-mesa-dev \
17 libsamplerate-dev libsdl-dev libsdl-ttf-dev mesa-dev speex-dev yasm zlib-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 export PREFIX=/usr DESTDIR=$install
23 ./m64p_build.sh &&
24 ./m64p_install.sh
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 cp -a $install/* $fs
31 rm -r $fs/usr/include
32 find $fs -name '*.so*' -exec chmod a+x \{\} \;
33 }