wok view gnustep-back/receipt @ rev 9432

dropbear: fix xauth path (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Mar 31 12:59:46 2011 +0200 (2011-03-31)
parents 8d6502e383e2
children ba5c193df791
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 gcc audiofile aspell \
9 giflib gnutls libbfd util-linux-ng-uuid libtasn1 xorg-libXmu freetype"
10 BUILD_DEPENDS="gnustep-make tar"
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 }