wok annotate vice/receipt @ rev 14252

readline: update deps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 25 15:43:45 2013 +0100 (2013-03-25)
parents
children b0c60d808e5c
rev   line source
devl547@13769 1 # SliTaz package receipt.
devl547@13769 2
devl547@13769 3 PACKAGE="vice"
devl547@13769 4 VERSION="2.2"
devl547@13769 5 CATEGORY="games"
devl547@13769 6 SHORT_DESC="Commodore 64 and others emulator."
devl547@13769 7 MAINTAINER="devl547@gmail.com"
devl547@13769 8 DEPENDS="gtk+"
devl547@13769 9 BUILD_DEPENDS="gtk+-dev"
devl547@13769 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
devl547@13769 11 WEB_SITE="http://www.viceteam.org/"
devl547@13769 12 WGET_URL="http://www.zimmers.net/anonftp/pub/cbm/crossplatform/emulators/VICE/$TARBALL"
devl547@13769 13
devl547@13769 14 # Rules to configure and make the package.
devl547@13769 15 compile_rules()
devl547@13769 16 {
devl547@13769 17 cd $src
devl547@13769 18 ./configure \
devl547@13769 19 --prefix=/usr \
devl547@13769 20 --enable-gnomeui \
devl547@13769 21 --enable-memmap \
devl547@13769 22 $CONFIGURE_ARGS &&
devl547@13769 23 make $MAKEFLAGS && make DESTDIR=$DESTDIR install
devl547@13769 24 }
devl547@13769 25
devl547@13769 26 # Rules to gen a SliTaz package suitable for Tazpkg.
devl547@13769 27 genpkg_rules()
devl547@13769 28 {
devl547@13769 29 mkdir -p $fs/usr/
devl547@13769 30 cp -a $install/usr/bin $fs/usr/
devl547@13769 31 cp -a $install/usr/lib $fs/usr/
devl547@13769 32 }