wok view gnustep-back/receipt @ rev 11345

fail2ban: Fixed typo.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Nov 26 14:56:42 2011 +0000 (2011-11-26)
parents 6efa3fbee12d
children a472d23561c4
line source
1 # SliTaz package receipt.
3 PACKAGE="gnustep-back"
4 VERSION="0.20.0"
5 CATEGORY="x-window"
6 SHORT_DESC="GNUstep Generic back-end."
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 gnustep-gui libart_lgpl audiofile aspell \
13 giflib gnutls libbfd util-linux-ng-uuid libtasn1 xorg-libXmu freetype"
14 BUILD_DEPENDS="gnustep-make tar gnustep-base-dev gnustep-gui-dev libart_lgpl-dev \
15 audiofile-dev aspell-dev giflib-dev gnutls-dev libbfd-dev util-linux-ng-uuid-dev \
16 libtasn1-dev xorg-libXmu-dev freetype-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 ./configure \
23 --prefix=/usr \
24 $CONFIGURE_ARGS &&
25 make && make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $_pkg/usr/bin $fs/usr
33 cp -a $_pkg/usr/lib/GNUstep $fs/usr/lib
34 }