wok-6.x view vice/receipt @ rev 15275

clipit: remove icon (sorry, guys), move autostart item back to /etc/...
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Sep 25 19:03:47 2013 +0300 (2013-09-25)
parents 640d56358134
children 98484136df50
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 ./configure \
21 --prefix=/usr \
22 --enable-gnomeui \
23 --enable-memmap \
24 $CONFIGURE_ARGS &&
25 make $MAKEFLAGS && make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/
32 cp -a $install/usr/bin $fs/usr/
33 cp -a $install/usr/lib $fs/usr/
34 }