mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
system/mount-zip: Updated for version 1.0.12.
Signed-off-by: B. Watson <urchlay@slackware.uk> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
33731115a2
commit
04a204a1b1
2 changed files with 17 additions and 24 deletions
|
@ -2,26 +2,15 @@
|
|||
|
||||
# Slackware build script for mount-zip
|
||||
|
||||
# Copyright 2022 Charadon
|
||||
# Copyright 2023 B. Watson
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
# permitted provided that the following conditions are met:
|
||||
#
|
||||
# 1. Redistributions of this script must retain the above copyright
|
||||
# notice, this list of conditions and the following disclaimer.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
|
||||
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
||||
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
||||
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
# Original author: Charadon
|
||||
# Modified and now maintained by B. Watson (urchlay@slackware.uk).
|
||||
|
||||
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
|
||||
|
||||
# 20240209 bkw:
|
||||
# - update for v1.0.12.
|
||||
# - relicense as WTFPL with permission from Charadon.
|
||||
# - add man page, now that there is one.
|
||||
|
||||
# 20230828 bkw: take over maintenance, update for v1.0.9.
|
||||
# - actually use SLKCFLAGS.
|
||||
|
@ -32,7 +21,7 @@
|
|||
cd $(dirname $0) ; CWD=$(pwd)
|
||||
|
||||
PRGNAM=mount-zip
|
||||
VERSION=${VERSION:-1.0.9}
|
||||
VERSION=${VERSION:-1.0.12}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
PKGTYPE=${PKGTYPE:-tgz}
|
||||
|
@ -98,6 +87,10 @@ sed -i "/^CXXFLAGS/s,-O2,$SLKCFLAGS," Makefile lib/Makefile
|
|||
make
|
||||
install -s -Dm755 mount-zip $PKG/usr/bin/mount-zip
|
||||
|
||||
# 20240209 bkw: upstream now ships a man page.
|
||||
mkdir -p $PKG/usr/man/man1
|
||||
gzip -9c < $PRGNAM.1 > $PKG/usr/man/man1/$PRGNAM.1.gz
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
rm -f INSTALL.md
|
||||
cp -a LICENSE changelog *.md $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="mount-zip"
|
||||
VERSION="1.0.9"
|
||||
VERSION="1.0.12"
|
||||
HOMEPAGE="https://github.com/google/mount-zip"
|
||||
DOWNLOAD="https://github.com/google/mount-zip/archive/v1.0.9/mount-zip-1.0.9.tar.gz"
|
||||
MD5SUM="e6fec7d09427d46d0233f33a5da48246"
|
||||
DOWNLOAD="https://github.com/google/mount-zip/archive/v1.0.12/mount-zip-1.0.12.tar.gz"
|
||||
MD5SUM="f7e2ace30c17737b166c413cee25d49b"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
|
|
Loading…
Reference in a new issue