wok rev 21545

updated ninja (1.8.2 -> 1.9.0)
author Hans-G?nter Theisgen
date Mon May 06 13:49:29 2019 +0100 (2019-05-06)
parents 6c767b8fea7d
children 7841119a230d
files ninja/receipt
line diff
     1.1 --- a/ninja/receipt	Mon May 06 13:12:06 2019 +0100
     1.2 +++ b/ninja/receipt	Mon May 06 13:49:29 2019 +0100
     1.3 @@ -1,14 +1,15 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="ninja"
     1.7 -VERSION="1.8.2"
     1.8 +VERSION="1.9.0"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="A small build system with a focus on speed"
    1.11 +SHORT_DESC="A small build system with a focus on speed."
    1.12  MAINTAINER="pascal.bellard@slitaz.org"
    1.13  LICENSE="Apache"
    1.14 +WEB_SITE="https://ninja-build.org/"
    1.15 +
    1.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.17 -WEB_SITE="https://ninja-build.org/"
    1.18 -WGET_URL="https://github.com/ninja-build/ninja/archive/v$VERSION.tar.gz"
    1.19 +WGET_URL="https://github.com/ninja-build/$PACKAGE/archive/v$VERSION.tar.gz"
    1.20  
    1.21  DEPENDS="gcc-lib-base"
    1.22  BUILD_DEPENDS="python"
    1.23 @@ -22,7 +23,9 @@
    1.24  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.25  genpkg_rules()
    1.26  {
    1.27 -	mkdir -p $fs/usr/bin $install/usr/share/doc
    1.28 -	cp $src/doc/manual.asciidoc $install/usr/share/doc
    1.29 -	cp -a $src/ninja $fs/usr/bin
    1.30 +	mkdir -p $fs/usr/bin
    1.31 +	mkdir -p $install/usr/share/doc
    1.32 +
    1.33 +	cp $src/doc/manual.asciidoc	$install/usr/share/doc
    1.34 +	cp -a $src/ninja		$fs/usr/bin
    1.35  }