diff options
author | B. Watson <yalhcru@gmail.com> | 2022-04-19 12:20:18 -0400 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2022-04-19 12:20:18 -0400 |
commit | a4ee4fa9ce640a13013e71e9c4c3ddc02d333ee9 (patch) | |
tree | d8ef7c98a1927fb6c5b7dbd49396e1e314d7a21e | |
parent | 7bc49ca78b37f6b89cd9e34332dc329fb76bc025 (diff) | |
download | slackbuilds-a4ee4fa9ce640a13013e71e9c4c3ddc02d333ee9.tar.gz |
libraries/grx: Fix docs, disable parallel builds.
Signed-off-by: B. Watson <yalhcru@gmail.com>
-rw-r--r-- | libraries/grx/grx.SlackBuild | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/libraries/grx/grx.SlackBuild b/libraries/grx/grx.SlackBuild index e79ca29997..aeedd0ccc6 100644 --- a/libraries/grx/grx.SlackBuild +++ b/libraries/grx/grx.SlackBuild @@ -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 |