diff options
author | B. Watson <yalhcru@gmail.com> | 2022-03-03 11:34:04 -0500 |
---|---|---|
committer | Andrew Clemons <andrew.clemons@gmail.com> | 2022-03-05 00:20:04 +1300 |
commit | 4f6877dfe422be7c52be11051d85a8e11d16ea10 (patch) | |
tree | ac27732f972b8af71d27df332d2923e682afa980 /office/impressive/impressive.SlackBuild | |
parent | 5dc39567019b9298ccacb1f700b1f4be669f3ac5 (diff) |
office/impressive: Updated for version 0.13.0_beta2+20220110_r312.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Diffstat (limited to 'office/impressive/impressive.SlackBuild')
-rw-r--r-- | office/impressive/impressive.SlackBuild | 33 |
1 files changed, 17 insertions, 16 deletions
diff --git a/office/impressive/impressive.SlackBuild b/office/impressive/impressive.SlackBuild index af94ae3972dcf..010bc29fc661a 100644 --- a/office/impressive/impressive.SlackBuild +++ b/office/impressive/impressive.SlackBuild @@ -23,20 +23,23 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# 20220303 bkw: Modified by SlackBuilds.org: +# - update to latest SVN, since 0.12.1 and 0.13.0_beta2 segfault on startup. +# - remove pilkit from REQUIRES ('cause it's not required). +# - use python3. actually it works with either 2 or 3, but with 3, we don't +# need python2-pillow as a dependency. +# - mention mupdf in README. + cd $(dirname $0) ; CWD=$(pwd) PRGNAM=impressive -SRCNAM=Impressive -VERSION=${VERSION:-0.12.1} +VERSION=${VERSION:-0.13.0_beta2+20220110_r312} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} ARCH=noarch -# 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 @@ -51,26 +54,24 @@ set -eu rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP -rm -rf $SRCNAM-$VERSION -tar xvf $CWD/$SRCNAM-$VERSION.tar.gz -cd $SRCNAM-$VERSION +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.xz +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 {} \+ +make +sed -i '1s/python/python3/' $PRGNAM.py install -D -m 0755 $PRGNAM.py $PKG/usr/bin/$PRGNAM - mkdir -p $PKG/usr/man/man1 -cat $PRGNAM.1 > $PKG/usr/man/man1/$PRGNAM.1 - -find $PKG/usr/man -type f -exec gzip -9 {} \; -for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done +gzip -9c < $PRGNAM.1 > $PKG/usr/man/man1/$PRGNAM.1.gz mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a $PRGNAM.html demo.pdf changelog.txt license.txt $PKG/usr/doc/$PRGNAM-$VERSION +cp -a site/$PRGNAM.html demo.pdf *.txt $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install |