diff options
Diffstat (limited to 'development/netbeans/netbeans.SlackBuild')
-rw-r--r-- | development/netbeans/netbeans.SlackBuild | 92 |
1 files changed, 42 insertions, 50 deletions
diff --git a/development/netbeans/netbeans.SlackBuild b/development/netbeans/netbeans.SlackBuild index c79f77441d..05b8fbd0db 100644 --- a/development/netbeans/netbeans.SlackBuild +++ b/development/netbeans/netbeans.SlackBuild @@ -1,73 +1,64 @@ #!/bin/sh -# Slackware build script for Netbeans IDE +# Slackware build script for netbeans -# Copyright (c) 2008-2009, Antonio Hernández Blas <hba.nihilismus@gmail.com> -# All rights reserved. +# Copyright 2018 Sukma Wardana <sukma.wardana@mail.com> # -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# 1.- Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. +# Permission is hereby granted, free of charge, to any person obtaining a copy of this software +# and associated documentation files (the "Software"), to deal in the Software without restriction, +# including without limitation the rights to use, copy, modify, merge, publish, distribute, +# sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: # -# 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. - -# This script is just a binary repackaging. - -# Updated by Andre Barboza <bmg.andre@gmail.com> +# The above copyright notice and this permission notice shall be included in all copies or +# substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, +# INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR +# PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE +# FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. PRGNAM=netbeans -VERSION=${VERSION:-8.2} -ARCH=noarch +VERSION=${VERSION:-9.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -BUNDLE=${BUNDLE:+-$BUNDLE} -DATE="201609300101" +ARCH=noarch + +SRCNAM=incubating-netbeans-java-${VERSION}-bin CWD=$(pwd) TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-${PRGNAM}${BUNDLE} +PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} set -e -rm -rf $PKG -mkdir -p $TMP $PKG/opt $OUTPUT -cd $PKG/opt -unzip -o $CWD/$PRGNAM-$VERSION-$DATE${BUNDLE}.zip -chown -R root:root . +rm -rf ${PKG} +mkdir -p ${TMP} ${PKG}/opt ${OUTPUT} + +cd ${PKG}/opt +unzip -o ${CWD}/${SRCNAM}.zip +cd ${PRGNAM} +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 \ - \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -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 {} \; -# Add netbeans to KDE/GNOME/XFCE menu -install -D -m 0644 $CWD/$PRGNAM.desktop \ - $PKG/usr/share/applications/$PRGNAM.desktop +# Add apache netbeans to KDE/GNOME/XFCE menu +install -D -m 644 ${CWD}/${PRGNAM}.desktop \ + ${PKG}/usr/share/applications/${PRGNAM}.desktop -# Add an icon for netbeans -install -D -m 0644 $CWD/$PRGNAM.png $PKG/usr/share/pixmaps/$PRGNAM.png +# Add an icon for apache netbeans +install -D -m 644 ${CWD}/${PRGNAM}.png ${PKG}/usr/share/pixmaps/${PRGNAM}.png -# Add an script to call netbeans from /usr/bin. -mkdir -p $PKG/usr/bin -cat <<- EOF > $PKG/usr/bin/$PRGNAM -#!/bin/sh -cd \$HOME -/opt/$PRGNAM/bin/netbeans \$@ -EOF -chmod 0755 $PKG/usr/bin/$PRGNAM +# Add script to call netbeans from /usr/bin +install -D -m 755 ${CWD}/${PRGNAM} ${PKG}/usr/bin/${PRGNAM} find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true @@ -81,8 +72,9 @@ mv $PKG/opt/$PRGNAM/etc/netbeans.import \ $PKG/opt/$PRGNAM/etc/netbeans.import.new mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cd $PKG/opt/$PRGNAM -cp -a *.html *.txt *.css $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + CREDITS.html DEPENDENCIES DISCLAIMER LICENSE NOTICE README.html \ + $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install |