wok-next view fuse-emulator/receipt @ rev 20712

libtorrent: fix rtorrent building for non-64bit archs
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun May 27 12:13:53 2018 +0300 (2018-05-27)
parents 3d5fe73ca04f
children 342b30daff76
line source
1 # SliTaz package receipt v2.
3 PACKAGE="fuse-emulator"
4 VERSION="1.4.0"
5 CATEGORY="games"
6 SHORT_DESC="ZX Spectrum emulator"
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL2"
9 WEB_SITE="http://fuse-emulator.sourceforge.net/fuse.php"
11 TARBALL="fuse-$VERSION.tar.gz"
12 WGET_URL="$SF_MIRROR/fuse-emulator/$TARBALL"
14 BUILD_DEPENDS="perl libspectrum-dev xorg-libX11-dev xorg-libICE-dev gtk+-dev \
15 gtk+3-dev alsa-lib-dev libsdl-dev"
16 SPLIT="fuse-emulator-gtk3:gtk3"
18 compile_rules() {
19 SET_ARGS=''; [ -z "$SET" ] && SET_ARGS='--disable-gtk3'
21 ./configure \
22 --enable-desktop-integration \
23 $SET_ARGS \
24 $CONFIGURE_ARGS &&
25 fix libtool &&
26 make &&
27 make install
28 }
30 genpkg_rules() {
31 case $PACKAGE in
32 fuse-emulator)
33 copy @std @ico # only 16 and 48
34 DEPENDS="alsa-lib atk audiofile bzlib cairo fontconfig freetype \
35 gdk-pixbuf glib gtk+ libffi libgcrypt libgpg-error libharfbuzz \
36 liblzma libpng16 libsdl libspectrum libxml2 pango pcre tslib \
37 util-linux-blkid util-linux-mount util-linux-uuid xorg-libX11 \
38 xorg-libXau xorg-libXdmcp xorg-libXext xorg-libXrender xorg-libxcb \
39 xorg-pixman zlib"
40 ;;
41 fuse-emulator-gtk3)
42 copy @std @ico # only 16 and 48
43 CAT="games|with GTK+3 interface"
44 DEPENDS="alsa-lib atk audiofile bzlib cairo fontconfig freetype \
45 gdk-pixbuf glib gtk+3 libffi libgcrypt libgpg-error libharfbuzz \
46 liblzma libpng16 libsdl libspectrum libxml2 pango pcre tslib \
47 util-linux-blkid util-linux-mount util-linux-uuid xorg-libX11 \
48 xorg-libXau xorg-libXdmcp xorg-libXext xorg-libXrender xorg-libxcb \
49 xorg-pixman zlib"
50 ;;
51 esac
52 TAGS="emulator spectrum"
53 }