wok view gnustep-back/receipt @ rev 6039

Fix: bug 340 (need glibc-locale for abiword)
author Alexander Medvedev <devl547@gmail.com>
date Tue Aug 17 02:56:55 2010 +0000 (2010-08-17)
parents 9f19aee613be
children 8527ff530176
line source
1 # SliTaz package receipt.
3 PACKAGE="gnustep-back"
4 VERSION="0.16.0"
5 CATEGORY="x-window"
6 SHORT_DESC="GNUstep Generic back-end."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gnustep-base gnustep-gui libart_lgpl nvidia gcc audiofile aspell \
9 giflib gnutls libbfd util-linux-ng-uuid libtasn1"
10 BUILD_DEPENDS="gnustep-base-dev gnustep-gui-dev"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WEB_SITE="http://www.gnustep.org/"
13 WGET_URL="ftp://ftp.gnustep.org/pub/gnustep/core/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$PWD/_pkg 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/GNUstep $fs/usr/lib
32 }