libraries/libpagemaker: Updated for version 0.0.4.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
164efb0ba8
commit
66c17fff55
|
@ -2,4 +2,5 @@ Libpagemaker is an import filter library for Adobe PageMaker files,
|
|||
based on librevenge. The library is a part of the Document Liberation
|
||||
Project.
|
||||
|
||||
To build the doxygen html documentation use DOC="yes".
|
||||
To build the doxygen html documentation use:
|
||||
DOC="yes" ./libpagemaker.SlackBuild
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
# Slackware build script for libpagemaker
|
||||
|
||||
# Copyright 2015-2017 Hunter Sezen California, USA
|
||||
# Copyright 2015-2018 Hunter Sezen California, USA
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
|
@ -23,7 +23,7 @@
|
|||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=libpagemaker
|
||||
VERSION=${VERSION:-0.0.3}
|
||||
VERSION=${VERSION:-0.0.4}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
|
@ -54,7 +54,7 @@ else
|
|||
LIBDIRSUFFIX=""
|
||||
fi
|
||||
|
||||
set -e
|
||||
set -eu
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
|
@ -69,12 +69,10 @@ find -L . \
|
|||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||
|
||||
DOC=${DOC:-no}
|
||||
if [ ! "$DOC" = "yes" ]; then
|
||||
doc="--without-docs"
|
||||
else
|
||||
doc=""
|
||||
fi
|
||||
case "${DOC:-0}" in
|
||||
0) doc='--without-docs' ;;
|
||||
*) doc='--with-docs' ;;
|
||||
esac
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
|
@ -82,6 +80,7 @@ CXXFLAGS="$SLKCFLAGS" \
|
|||
--prefix=/usr \
|
||||
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
||||
--docdir=/usr/doc/$PRGNAM-$VERSION \
|
||||
--disable-werror \
|
||||
--build=$ARCH-slackware-linux \
|
||||
$doc
|
||||
|
||||
|
@ -92,7 +91,8 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | gr
|
|||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a AUTHORS COPYING ChangeLog HACKING NEWS NOTES README $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a AUTHORS COPYING ChangeLog HACKING NEWS NOTES README \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="libpagemaker"
|
||||
VERSION="0.0.3"
|
||||
VERSION="0.0.4"
|
||||
HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libpagemaker"
|
||||
DOWNLOAD="http://dev-www.libreoffice.org/src/libpagemaker/libpagemaker-0.0.3.tar.xz"
|
||||
MD5SUM="9f377b0690fa6e96a94bb309509860e9"
|
||||
DOWNLOAD="http://dev-www.libreoffice.org/src/libpagemaker/libpagemaker-0.0.4.tar.xz"
|
||||
MD5SUM="8395dfc5eef11c58d5a9efe3bfe64831"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
|
|
Loading…
Reference in New Issue