libraries/grx: Fix docs, disable parallel builds.

Signed-off-by: B. Watson <yalhcru@gmail.com>
This commit is contained in:
B. Watson 2022-04-19 12:20:18 -04:00
parent 7bc49ca78b
commit a4ee4fa9ce

View file

@ -22,11 +22,15 @@
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# 20220419 bkw: Modified by SlackBuilds.org, BUILD=3:
# - no executable .bat file in doc dir.
# - add -j1 to make commands (parallel builds are randomly broken).
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=grx
VERSION=${VERSION:-249}
BUILD=${BUILD:-2}
BUILD=${BUILD:-3}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@ -38,9 +42,6 @@ if [ -z "$ARCH" ]; then
esac
fi
# 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
@ -76,13 +77,13 @@ 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 {} \+
# Lots of places with this, and probably only one matters, but I'm too lazy
# to figure out which one, so let's use the big hammer:
find . -type f -exec sed -i "s,-O2,$SLKCFLAGS,g" {} \;
find . -type f -exec sed -i "s,-O2,$SLKCFLAGS,g" {} \+
./configure \
--prefix=/usr \
@ -94,12 +95,13 @@ find . -type f -exec sed -i "s,-O2,$SLKCFLAGS,g" {} \;
--enable-tiff \
$EXTRAOPTS
make
make install INSTALLDIR="$PKG/usr" DESTDIR="$PKG"
make -j1
make -j1 install INSTALLDIR="$PKG/usr" DESTDIR="$PKG"
# move the static library to the right place
[ -n "$LIBDIRSUFFIX" ] && mv $PKG/usr/lib $PKG/usr/lib$LIBDIRSUFFIX
chmod 644 doc/tex/*.bat # 20220419 bkw: don't need +x permission.
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -ar copying* doc/* readme $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild