diff options
author | B. Watson <yalhcru@gmail.com> | 2017-03-21 00:44:28 -0400 |
---|---|---|
committer | David Spencer <idlemoor@slackbuilds.org> | 2017-03-25 13:28:11 +0000 |
commit | e52536c986185915458ed6c4ba90580665230bdc (patch) | |
tree | 64d811d6bbab274a3f1ad109d7e7e8e11bd235b6 /misc/funny-manpages | |
parent | 3c9d21d16152a03eeb6136a19d61e0d889db6a83 (diff) |
misc/funny-manpages: Allow VERSION override.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'misc/funny-manpages')
-rw-r--r-- | misc/funny-manpages/funny-manpages.SlackBuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/misc/funny-manpages/funny-manpages.SlackBuild b/misc/funny-manpages/funny-manpages.SlackBuild index f302b6102003..d88a5414a317 100644 --- a/misc/funny-manpages/funny-manpages.SlackBuild +++ b/misc/funny-manpages/funny-manpages.SlackBuild @@ -24,9 +24,9 @@ # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=funny-manpages -VERSION=1.3.5 -SRC_VERSION=1.3 -DEB_VERSION=1.3-5 +VERSION=${VERSION:-1.3.5} +SRC_VERSION=$( echo $VERSION | cut -d. -f1,2 ) +DEB_VERSION=5 ARCH=noarch BUILD=${BUILD:-2} @@ -53,7 +53,7 @@ find -L . \ -exec chmod 644 {} \; # Patch the manpages to the latest version. -patch -p1 < $CWD/${PRGNAM}_$DEB_VERSION.diff +patch -p1 < $CWD/${PRGNAM}_$SRC_VERSION-$DEB_VERSION.diff # Create the directories we need mkdir -p $PKG/usr/man/man{1,3,6,7} |