wok view gnustep-make/receipt @ rev 7257

Up: xorg-xinput to 1.5.3.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Nov 14 15:48:57 2010 +0000 (2010-11-14)
parents
children 5e2694ed436c
line source
1 # SliTaz package receipt.
3 PACKAGE="gnustep-make"
4 VERSION="2.2.0"
5 CATEGORY="development"
6 SHORT_DESC="GNUstep make package."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="make"
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 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 --with-layout=fhs \
20 $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/share
29 cp -a $_pkg/etc $fs
30 cp -a $_pkg/usr/bin $fs/usr
31 cp -a $_pkg/usr/share/GNUstep $fs/usr/share
32 }