wok-next view gnustep-gui/receipt @ rev 21168

New package asciidoctor
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Mar 25 12:22:25 2019 +0200 (2019-03-25)
parents 5669e8b3be70
children d950c98132de
line source
1 # SliTaz package receipt v2.
3 PACKAGE="gnustep-gui"
4 VERSION="0.25.1"
5 CATEGORY="x-window"
6 SHORT_DESC="GNUstep GUI class library"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="http://www.gnustep.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="ftp://ftp.gnustep.org/pub/gnustep/core/$TARBALL"
14 BUILD_DEPENDS="gnustep-make gnustep-base-dev audiofile-dev aspell-dev giflib-dev \
15 portaudio-dev cups-dev libtasn1-dev tar jpeg-dev tiff-dev libpng-dev"
16 SPLIT="$PACKAGE-dev"
18 compile_rules() {
19 ./configure \
20 --prefix=/usr \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$install install
24 }
26 genpkg_rules() {
27 case $PACKAGE in
28 gnustep-gui)
29 mkdir -p $fs/usr/lib
30 cp -a $install/usr/bin $fs/usr
31 cp -a $install/usr/lib/*.so* $fs/usr/lib
32 cp -a $install/usr/lib/GNUstep $fs/usr/lib
33 DEPENDS="gnustep-base audiofile aspell giflib portaudio cups \
34 libcomerr3 libtasn1 jpeg libtiff libpng"
35 ;;
36 *-dev)
37 mkdir -p $fs/usr/share
38 cp -a $install/usr/include $fs/usr
39 cp -a $install/usr/share/GNUstep $fs/usr/share
40 DEPENDS="gnustep-gui"
41 ;;
42 esac
43 }