mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
games/nFlood: Fix 15.0 build.
Signed-off-by: B. Watson <yalhcru@gmail.com>
This commit is contained in:
parent
6bbb93dab6
commit
9e61295b01
2 changed files with 11 additions and 11 deletions
|
@ -22,6 +22,11 @@
|
|||
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
# 20220220 bkw: Modified by SlackBuilds.org:
|
||||
# - fix github download URL boondoggle.
|
||||
# - fix 15.0 build.
|
||||
# - binary in /usr/games.
|
||||
|
||||
cd $(dirname $0) ; CWD=$(pwd)
|
||||
|
||||
PRGNAM=nFlood
|
||||
|
@ -38,9 +43,6 @@ if [ -z "$ARCH" ]; then
|
|||
esac
|
||||
fi
|
||||
|
||||
# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
|
||||
# the name of the created package would be, and then exit. This information
|
||||
# could be useful to other scripts.
|
||||
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
|
||||
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
|
||||
exit 0
|
||||
|
@ -75,18 +77,16 @@ cd $PRGNAM-$VERSION
|
|||
chown -R root:root .
|
||||
find -L . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
||||
-o -perm 511 \) -exec chmod 755 {} \; -o \
|
||||
-o -perm 511 \) -exec chmod 755 {} \+ -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \+
|
||||
|
||||
# install game in correct place and remove empty manpage
|
||||
patch -p1 < $CWD/Makefile.patch
|
||||
|
||||
make
|
||||
make install PREFIX=$PKG/usr
|
||||
|
||||
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
make CDEBUG="$SLKCFLAGS -fcommon"
|
||||
make install PREFIX=$PKG/usr BINDIR=$PKG/usr/games
|
||||
strip $PKG/usr/games/*
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a COPYING README.md TODO $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
PRGNAM="nFlood"
|
||||
VERSION="0.5.0"
|
||||
HOMEPAGE="https://github.com/alexdantas/nFlood"
|
||||
DOWNLOAD="https://github.com/alexdantas/nFlood/archive/v0.5.0.tar.gz"
|
||||
DOWNLOAD="https://github.com/alexdantas/nFlood/archive/v0.5.0/nFlood-0.5.0.tar.gz"
|
||||
MD5SUM="8846c12c2f6a132f42bfd543f67d5eef"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
|
|
Loading…
Reference in a new issue