mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
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>
This commit is contained in:
parent
5dc3956701
commit
4f6877dfe4
4 changed files with 31 additions and 23 deletions
|
@ -1,3 +1,5 @@
|
|||
impressive (fancy PDF presentation program)
|
||||
|
||||
Impressive is a program that displays presentation slides. But unlike
|
||||
OpenOffice.org Impress or other similar applications, it does so with
|
||||
style. Smooth alpha-blended slide transitions are provided for the sake
|
||||
|
@ -11,5 +13,10 @@ for displaying them. If your application does not support PDF output,
|
|||
you can alternatively use a set of pre-rendered image files, or use
|
||||
Impressive to make a slideshow with your favorite photos.
|
||||
|
||||
pdftk is an optional dependency for retrieving PDF metadata
|
||||
(page titles, hyperlinks).
|
||||
Optional runtime dependencies:
|
||||
|
||||
pdftk - for retrieving PDF metadata (page titles, hyperlinks).
|
||||
|
||||
mupdf - alternative PDF renderer, possibly faster and prettier than
|
||||
poppler (which is the default renderer). Can also be used in
|
||||
place of pdftk for metadata.
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
PRGNAM="impressive"
|
||||
VERSION="0.12.1"
|
||||
VERSION="0.13.0_beta2+20220110_r312"
|
||||
HOMEPAGE="http://impressive.sourceforge.net/"
|
||||
DOWNLOAD="https://sourceforge.net/projects/impressive/files/Impressive/0.12.1/Impressive-0.12.1.tar.gz"
|
||||
MD5SUM="05f997d27dd183d9da38439787cdb736"
|
||||
DOWNLOAD="https://slackware.uk/~urchlay/src/impressive-0.13.0_beta2+20220110_r312.tar.xz"
|
||||
MD5SUM="744b4a9edf9d976f2b3caf4d800a8f0c"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="pygame pilkit"
|
||||
REQUIRES="pygame"
|
||||
MAINTAINER="Brenton Earl"
|
||||
EMAIL="brent@exitstatusone.com"
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
# customary to leave one space after the ':' except on otherwise blank lines.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
impressive: impressive (A fancy PDF presentation program)
|
||||
impressive: impressive (fancy PDF presentation program)
|
||||
impressive:
|
||||
impressive: Impressive is a program that displays presentation slides. But unlike
|
||||
impressive: OpenOffice.org Impress or other similar applications, it does so with
|
||||
|
|
Loading…
Reference in a new issue