wok-next view gnustep-make/receipt @ rev 21020

Cleaning is almost finished... I should proceed to upgrades.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 02 14:15:08 2018 +0200 (2018-11-02)
parents a1be3bf87ce1
children e19ff076dc63
line source
1 # SliTaz package receipt v2.
3 PACKAGE="gnustep-make"
4 VERSION="2.7.0"
5 CATEGORY="development"
6 SHORT_DESC="GNUstep make package"
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 compile_rules() {
15 ./configure \
16 --prefix=/usr \
17 --with-layout=fhs \
18 $CONFIGURE_ARGS &&
19 make &&
20 make DESTDIR=$install install
21 }
23 genpkg_rules() {
24 mkdir -p $fs/usr/share
25 cp -a $install/etc $fs
26 cp -a $install/usr/bin $fs/usr
27 cp -a $install/usr/share/GNUstep $fs/usr/share
28 DEPENDS="make"
29 }