wok-current view gnustep-gui/receipt @ rev 24102
Add some current_version
| author | Pascal Bellard <pascal.bellard@slitaz.org> | 
|---|---|
| date | Fri Sep 17 10:35:57 2021 +0000 (2021-09-17) | 
| parents | 3a42ed2154cd | 
| children | 453c249b6219 | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="gnustep-gui"
     4 VERSION="0.27.0"
     5 CATEGORY="x-window"
     6 SHORT_DESC="GNUstep GUI class library."
     7 MAINTAINER="pankso@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 DEPENDS="audiofile aspell cups giflib gnustep-base jpeg libcomerr3 
    15 	libpng libtasn1 portaudio tiff"
    16 BUILD_DEPENDS="audiofile-dev aspell-dev cups-dev giflib-dev gnustep-base-dev 
    17 	gnustep-make jpeg-dev libpng-dev libtasn1-dev portaudio-dev tar tiff-dev"
    19 # Rules to configure and make the package.
    20 compile_rules()
    21 {
    22 	./configure		\
    23 		--prefix=/usr	\
    24 		$CONFIGURE_ARGS &&
    25 	make &&
    26 	make DESTDIR=$DESTDIR install
    27 }
    29 # Rules to gen a SliTaz package suitable for Tazpkg.
    30 genpkg_rules()
    31 {
    32 	mkdir -p $fs/usr/lib
    34 	cp -a $install/usr/bin		$fs/usr
    35 	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    36 	cp -a $install/usr/lib/GNUstep	$fs/usr/lib
    37 }