wok annotate vice/receipt @ rev 20801

updated collectd, collectd-apache and collectd-dev (5.1.0 -> 5.8.1)
author Hans-G?nter Theisgen
date Fri Feb 15 15:54:04 2019 +0100 (2019-02-15)
parents 986db52247ee
children ace9ad9d5bb1
rev   line source
devl547@13769 1 # SliTaz package receipt.
devl547@13769 2
devl547@13769 3 PACKAGE="vice"
pascal@19721 4 VERSION="3.0"
devl547@13769 5 CATEGORY="games"
devl547@13769 6 SHORT_DESC="Commodore 64 and others emulator."
devl547@13769 7 MAINTAINER="devl547@gmail.com"
pascal@15216 8 LICENSE="GPL2"
devl547@13769 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
devl547@13769 10 WEB_SITE="http://www.viceteam.org/"
pascal@19721 11 WGET_URL="$SF_MIRROR/vice-emu/files/releases/$TARBALL"
devl547@13769 12
pascal@15216 13 DEPENDS="gtk+"
pascal@19721 14 BUILD_DEPENDS="gtk+-dev xorg-bdftopcf xorg-mkfontdir"
pascal@15216 15
devl547@13769 16 # Rules to configure and make the package.
devl547@13769 17 compile_rules()
devl547@13769 18 {
pascal@20212 19 sed -i 's|uname -m|echo i486|' src/lib/liblame/Makefile.unix
pascal@15285 20 sed -i 's/cp .(fontsdir)/echo &/' data/fonts/Makefile.*
devl547@13769 21 ./configure \
devl547@13769 22 --prefix=/usr \
devl547@13769 23 --enable-gnomeui \
devl547@13769 24 --enable-memmap \
devl547@13769 25 $CONFIGURE_ARGS &&
devl547@13769 26 make $MAKEFLAGS && make DESTDIR=$DESTDIR install
devl547@13769 27 }
devl547@13769 28
devl547@13769 29 # Rules to gen a SliTaz package suitable for Tazpkg.
devl547@13769 30 genpkg_rules()
devl547@13769 31 {
devl547@13769 32 mkdir -p $fs/usr/
devl547@13769 33 cp -a $install/usr/bin $fs/usr/
devl547@13769 34 cp -a $install/usr/lib $fs/usr/
devl547@13769 35 }