wok-next diff nimrod/receipt @ rev 21290

updated gnustep-back (0.25.1 -> 0.27.0)
author Hans-G?nter Theisgen
date Sun Dec 08 12:42:33 2019 +0100 (2019-12-08)
parents 4e6503d7a19f
children
line diff
     1.1 --- a/nimrod/receipt	Thu Jul 12 18:34:58 2018 +0300
     1.2 +++ b/nimrod/receipt	Sun Dec 08 12:42:33 2019 +0100
     1.3 @@ -3,8 +3,8 @@
     1.4  PACKAGE="nimrod"
     1.5  VERSION="0.9.2"
     1.6  CATEGORY="development"
     1.7 -SHORT_DESC="The Nimrod programming language."
     1.8 -MAINTAINER="admin@trixarian.net"
     1.9 +SHORT_DESC="The Nimrod programming language"
    1.10 +MAINTAINER="devel@slitaz.org"
    1.11  LICENSE="GPL"
    1.12  WEB_SITE="http://www.nimrod-code.org/"
    1.13  REPOLOGY="nim"
    1.14 @@ -12,28 +12,23 @@
    1.15  TARBALL="nimrod_$VERSION.zip"
    1.16  WGET_URL="http://nimrod-code.org/download/$TARBALL"
    1.17  
    1.18 -DEPENDS="gcc glibc-base readline"
    1.19  BUILD_DEPENDS="gcc glibc-dev readline-dev"
    1.20  
    1.21 -# Rules to configure and make the package.
    1.22 -compile_rules()
    1.23 -{
    1.24 -	cd $src
    1.25 +compile_rules() {
    1.26  	sed -i "s/uname -m/echo $ARCH/" build.sh
    1.27  	chmod +x build.sh
    1.28  	chmod +x install.sh
    1.29  	./build.sh
    1.30  	./bin/nimrod c -d:release koch
    1.31  	./koch boot -d:release
    1.32 -	./install.sh $DESTDIR
    1.33 +	./install.sh $install
    1.34  }
    1.35  
    1.36 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.37 -genpkg_rules()
    1.38 -{
    1.39 +genpkg_rules() {
    1.40  	mkdir -p $fs/usr/share/nimrod $fs/usr/lib
    1.41  	cp -a $install/nimrod/bin $fs/usr
    1.42  	cp -a $install/nimrod/config $fs/etc
    1.43  	cp -a $install/nimrod/lib $fs/usr/lib/nimrod
    1.44  	cp -a $install/nimrod/doc $fs/usr/share/nimrod
    1.45 +	DEPENDS="gcc glibc-base readline"
    1.46  }