wok view fuse-emulator/receipt @ rev 20235

busybox: add arch (uname -m alias)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 05 15:52:59 2018 +0100 (2018-03-05)
parents a0250385f2a5
children 872b0404dc1c
line source
1 # SliTaz package receipt.
3 PACKAGE="fuse-emulator"
4 VERSION="1.0.0.1"
5 CATEGORY="games"
6 SHORT_DESC="ZX Spectrum emulator"
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL2"
9 # make SOURCE fuse-emulator so the source tarball
10 # is not named fuse-$VERSION.tar.lzma
11 SOURCE="fuse-emulator"
12 TARBALL="fuse-$VERSION.tar.gz"
13 WEB_SITE="http://fuse-emulator.sourceforge.net/fuse.php"
14 WGET_URL="$SF_MIRROR/$SOURCE/$TARBALL"
15 TAGS="emulator spectrum"
17 DEPENDS="alsa-lib gtk+ libpng libspectrum libxml2"
18 BUILD_DEPENDS="alsa-lib-dev gtk+-dev libpng-dev libspectrum-dev libxml2-dev"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 cd $src
24 ./configure $CONFIGURE_ARGS && make && make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/share
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/share/fuse $fs/usr/share
33 }