diff options
Diffstat (limited to 'office/openoffice.org/openoffice.org.SlackBuild')
-rw-r--r-- | office/openoffice.org/openoffice.org.SlackBuild | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/office/openoffice.org/openoffice.org.SlackBuild b/office/openoffice.org/openoffice.org.SlackBuild index 382b6aaf52..1ecb73fb47 100644 --- a/office/openoffice.org/openoffice.org.SlackBuild +++ b/office/openoffice.org/openoffice.org.SlackBuild @@ -1,9 +1,7 @@ #!/bin/sh # Slackware build script for openoffice.org - # Ryan P.C. McQuen | Everett, WA | ryan.q@linux.com - # Originally written by Niki Kovacs <info@microlinux.fr) # # Rewritten for slackbuilds.org by Ryan P.C. McQuen @@ -29,8 +27,8 @@ PRGNAM=openoffice.org SRCNAM=openoffice -VERSION=${VERSION:-4.1.1} -BUILD=${BUILD:-2} +VERSION=${VERSION:-4.1.2} +BUILD=${BUILD:-1} TAG=${TAG:-_SBo} SRCSHORT=$(echo $VERSION | cut -f1 -d.) @@ -86,6 +84,12 @@ rm -rf $TMP/$SOURCEDIR tar xvf $CWD/$TARNAME -C $TMP cd $TMP/$SOURCEDIR/RPMS +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 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; # We don't want this, so we delete the *onlineupdate*.rpm rm -f *onlineupdate*.rpm @@ -140,4 +144,6 @@ mv $TMP/$OOLANG $PKG/opt/${SRCNAM}${SRCSHORT}/lang/ chown -R root:root . find . -type d -exec chmod 755 {} \; chmod -R u+rw,go+r-w,a-s . + /sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-${VERSION}_${PKG_LANG}-$PKGARCH-$BUILD$TAG.${PKGTYPE:-tgz} + |