diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-05-29 02:53:35 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-05-29 02:54:21 +0700 |
commit | ef565f3ce860541df28ed6ce57aa7937d18baffe (patch) | |
tree | 93c58665d9f6e9dbfa268cbe2d7973c466e46cac /office/lyx/lyx.SlackBuild | |
parent | e29d94e5f4d6c361c68d1ae70f9b5c720b08c5cf (diff) | |
download | slackbuilds-ef565f3ce860541df28ed6ce57aa7937d18baffe.tar.gz |
office/lyx: Updated for version 2.2.0.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'office/lyx/lyx.SlackBuild')
-rw-r--r-- | office/lyx/lyx.SlackBuild | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/office/lyx/lyx.SlackBuild b/office/lyx/lyx.SlackBuild index a79d997ff3..c01339fd9d 100644 --- a/office/lyx/lyx.SlackBuild +++ b/office/lyx/lyx.SlackBuild @@ -5,7 +5,7 @@ # Now maintained by R. S. Ananda Murthy (rsamurti@gmail.com) PRGNAM=lyx -VERSION=${VERSION:-2.1.4} +VERSION=${VERSION:-2.2.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -46,10 +46,10 @@ tar xvf $CWD/$PRGNAM-$VERSION.tar.gz 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 \ - \( -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 {} \; CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ @@ -65,7 +65,7 @@ CXXFLAGS="$SLKCFLAGS" \ make make install DESTDIR=$PKG -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ +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 find $PKG/usr/man -type f -exec gzip -9 {} \; |