wok view vice/receipt @ rev 16557

Up: slitaz-base-files (5.6.2)
author Christophe Lincoln <pankso@slitaz.org>
date Thu May 01 08:34:51 2014 +0200 (2014-05-01)
parents b0c60d808e5c
children 986db52247ee
line source
1 # SliTaz package receipt.
3 PACKAGE="vice"
4 VERSION="2.2"
5 CATEGORY="games"
6 SHORT_DESC="Commodore 64 and others emulator."
7 MAINTAINER="devl547@gmail.com"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.viceteam.org/"
11 WGET_URL="http://www.zimmers.net/anonftp/pub/cbm/crossplatform/emulators/VICE/$TARBALL"
13 DEPENDS="gtk+"
14 BUILD_DEPENDS="gtk+-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 sed -i 's/cp .(fontsdir)/echo &/' data/fonts/Makefile.*
21 ./configure \
22 --prefix=/usr \
23 --enable-gnomeui \
24 --enable-memmap \
25 $CONFIGURE_ARGS &&
26 make $MAKEFLAGS && make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/
33 cp -a $install/usr/bin $fs/usr/
34 cp -a $install/usr/lib $fs/usr/
35 }