wok view gnustep-gui/receipt @ rev 21087

updated jsoncpp (0.10.2 -> 1.8.4)
author Hans-G?nter Theisgen
date Fri Mar 15 15:55:06 2019 +0100 (2019-03-15)
parents 8417cbe6fdae
children 3a42ed2154cd
line source
1 # SliTaz package receipt.
3 PACKAGE="gnustep-gui"
4 VERSION="0.20.0"
5 CATEGORY="x-window"
6 SHORT_DESC="GNUstep GUI class library."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.gnustep.org/"
11 WGET_URL="ftp://ftp.gnustep.org/pub/gnustep/core/$TARBALL"
13 DEPENDS="gnustep-base audiofile aspell giflib portaudio cups libcomerr3 \
14 libtasn1 jpeg tiff libpng"
15 BUILD_DEPENDS="gnustep-make gnustep-base-dev audiofile-dev aspell-dev giflib-dev \
16 portaudio-dev cups-dev libtasn1-dev tar jpeg-dev tiff-dev libpng-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --prefix=/usr \
23 $CONFIGURE_ARGS &&
24 make && make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 cp -a $install/usr/lib/GNUstep $fs/usr/lib
34 }