wok view gnustep-gui/receipt @ rev 15051

ibus-dev: no /usr/include ?
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Aug 12 18:56:11 2013 +0000 (2013-08-12)
parents 3de1f0f3086f
children 8417cbe6fdae
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 LICENSE="GPL3"
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 DEPENDS="gnustep-base audiofile aspell giflib portaudio cups libcomerr3 \
14 libtasn1 jpeg tiff libpng"
15 BUILD_DEPENDS="gnustep-make gnustep-base-dev audiofile-dev aspell-dev giflib-dev \
16 portaudio-dev cups-dev libtasn1-dev tar jpeg-dev tiff-dev libpng-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 $install/usr/bin $fs/usr
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 cp -a $install/usr/lib/GNUstep $fs/usr/lib
35 }