wok-next view vice/receipt @ rev 20785

gpgme: add gnupg, since build can not find gpgconf and gpg
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 07:02:52 2018 +0000 (2018-06-09)
parents b7c72e29de36
children 78e2f02bcc8c
line source
1 # SliTaz package receipt.
3 PACKAGE="vice"
4 VERSION="3.1"
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 gettext-tools xorg-bdftopcf xorg-mkfontdir"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 unset HOME
20 ./configure \
21 --prefix=/usr \
22 --enable-gnomeui \
23 $CONFIGURE_ARGS &&
24 make $MAKEFLAGS && make -j 1 DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/
31 cp -a $install/usr/bin $fs/usr/
32 cp -a $install/usr/lib $fs/usr/
33 }