wok view gnustep-gui/receipt @ rev 11631

gnutls*: improve receipt
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Wed Feb 01 00:27:43 2012 +0100 (2012-02-01)
parents 6c80e7d299c3
children 3de1f0f3086f
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 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.gnustep.org/"
10 WGET_URL="ftp://ftp.gnustep.org/pub/gnustep/core/$TARBALL"
12 DEPENDS="gnustep-base audiofile aspell giflib portaudio cups libcomerr3 libtasn1"
13 BUILD_DEPENDS="gnustep-make gnustep-base-dev audiofile-dev aspell-dev giflib-dev \
14 portaudio-dev cups-dev libtasn1-dev tar"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 $CONFIGURE_ARGS &&
23 make && make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $_pkg/usr/bin $fs/usr
31 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
32 cp -a $_pkg/usr/lib/GNUstep $fs/usr/lib
33 }