diff options
Diffstat (limited to 'games/arnold-cpc/arnold-cpc.SlackBuild')
-rw-r--r-- | games/arnold-cpc/arnold-cpc.SlackBuild | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/games/arnold-cpc/arnold-cpc.SlackBuild b/games/arnold-cpc/arnold-cpc.SlackBuild index ab7717623f..1b679f4e70 100644 --- a/games/arnold-cpc/arnold-cpc.SlackBuild +++ b/games/arnold-cpc/arnold-cpc.SlackBuild @@ -22,6 +22,10 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# 20220219 bkw: Modified by SlackBuilds.org: +# - fix 15.0 build. +# - absolute path to icon in .desktop file (because it's not in /usr/share/icons). + cd $(dirname $0) ; CWD=$(pwd) PRGNAM=arnold-cpc @@ -42,9 +46,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 @@ -79,12 +80,14 @@ cd $SRCDIR 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 {} \+ cd src +SLKCFLAGS+=" -fcommon" + CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ @@ -99,14 +102,11 @@ CXXFLAGS="$SLKCFLAGS" \ make # compile source # no make install support here -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 - cd .. # install executable mkdir -p $PKG/usr/bin -install -D -m0755 $SRCDIR $PKG/usr/bin/$SRCDIR +install -s -D -m0755 $SRCDIR $PKG/usr/bin/$SRCDIR # install .desktop file created for this script mkdir -p $PKG/usr/share/applications |