summaryrefslogtreecommitdiffstats
path: root/ninja/build/ninja.SlackBuild
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2016-04-14 11:09:53 +0000
committer Eric Hameleers <alien@slackware.com>2016-04-14 11:09:53 +0000
commit9d347afb59f1fc38e424996d59283194efb74823 (patch)
tree9ed44cbb43d18638428c1e937a796d28e0a46347 /ninja/build/ninja.SlackBuild
parent879596c0810815f8b2c83a16a2e003709141b7ad (diff)
downloadasb-9d347afb59f1fc38e424996d59283194efb74823.tar.gz
asb-9d347afb59f1fc38e424996d59283194efb74823.tar.xz
ninja: updated to 1.6.0
Diffstat (limited to '')
-rwxr-xr-xninja/build/ninja.SlackBuild10
1 files changed, 6 insertions, 4 deletions
diff --git a/ninja/build/ninja.SlackBuild b/ninja/build/ninja.SlackBuild
index f085ff16..babd925b 100755
--- a/ninja/build/ninja.SlackBuild
+++ b/ninja/build/ninja.SlackBuild
@@ -1,6 +1,6 @@
#!/bin/sh
# $Id$
-# Copyright 2014 Eric Hameleers, Eindhoven, NL
+# Copyright 2014, 2016 Eric Hameleers, Eindhoven, NL
# All rights reserved.
#
# Permission to use, copy, modify, and distribute this software for
@@ -27,12 +27,14 @@
# By: Eric Hameleers <alien@slackware.com>
# For: ninja
# Descr: build system with a focus on speed
-# URL: http://martine.github.io/ninja
+# URL: https://ninja-build.org/
# Build needs:
# Needs:
# Changelog:
# 1.4.0-1: 10/Apr/2014 by Eric Hameleers <alien@slackware.com>
# * Initial build.
+# 1.6.0-1: 14/Apr/2014 by Eric Hameleers <alien@slackware.com>
+# * Update.
#
# Run 'sh ninja.SlackBuild' to build a Slackware package.
# The package (.txz) and .txt file as well as build logs are created in /tmp .
@@ -41,7 +43,7 @@
# -----------------------------------------------------------------------------
PRGNAM=ninja
-VERSION=${VERSION:-1.4.0}
+VERSION=${VERSION:-1.6.0}
BUILD=${BUILD:-1}
NUMJOBS=${NUMJOBS:" -j4 "}
TAG=${TAG:-alien}
@@ -57,7 +59,7 @@ PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
SOURCE="$SRCDIR/${PRGNAM}-${VERSION}.tar.gz"
-SRCURL="https://github.com/martine/${PRGNAM}/archive/v${VERSION}.tar.gz"
+SRCURL="https://github.com/ninja-build/${PRGNAM}/archive/v${VERSION}.tar.gz"
##
## --- with a little luck, you won't have to edit below this point --- ##