wok-next view scummvm/receipt @ rev 21725

busybox: add overrides
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 11:18:16 2020 +0000 (2020-09-01)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="scummvm"
4 VERSION="1.6.0"
5 CATEGORY="games"
6 SHORT_DESC="A 'virtual machine' for several classic graphical point-and-click \
7 adventure games"
8 MAINTAINER="devel@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="https://www.scummvm.org/"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
15 BUILD_DEPENDS="alsa-lib-dev libmad-dev libmpeg2-dev libogg-dev sdl-dev \
16 libvorbis-dev flac-dev zlib-dev"
18 compile_rules() {
19 ./configure \
20 --prefix=/usr \
21 --datadir=/usr/games/scummvm \
22 --backend=sdl \
23 --disable-debug \
24 --with-flac-prefix=/usr \
25 --disable-fluidsynth \
26 --host=$HOST_SYSTEM &&
27 make &&
28 make install || return 1
30 mkdir -p $install/usr/share/applications
31 cp -a dists/scummvm.desktop $install/usr/share/applications
32 }
34 genpkg_rules() {
35 copy @std
36 DEPENDS="alsa-lib libmad libmpeg2 libogg sdl libvorbis flac zlib"
37 }