graphics/gimp-plugin-export-layers: Updated for version 3.3.1.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
10abb09217
commit
88e56f25ef
|
@ -9,4 +9,5 @@ separate images. Features include:
|
|||
|
||||
See the plugin from "File --> Export Layers..." with another option
|
||||
of "File --> Export Layers (repeat)" to subsequently export the same
|
||||
image (perhaps reworked) with identical export settings.
|
||||
image (perhaps reworked) with identical export settings. Comprehensive
|
||||
'Help' is available from within the plugin.
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
# Slackware build script for gimp-plugin-export-layers
|
||||
|
||||
# Copyright 2018, Andrew Strong, Blue Mountains, Australia.
|
||||
# Copyright 2018 - 2019 Andrew Strong, Blue Mountains, Australia.
|
||||
# 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=gimp-plugin-export-layers
|
||||
VERSION=${VERSION:-3.2.1}
|
||||
VERSION=${VERSION:-3.3.1}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
|
@ -71,15 +71,19 @@ find -L . \
|
|||
|
||||
find -L . -type f ! -name '*.py' -exec chmod 644 {} \;
|
||||
|
||||
mkdir -p $PKG/usr/lib${LIBDIRSUFFIX}/gimp/2.0/plug-ins/
|
||||
# The directory structure is 'doubled up' to avoid having 2 files: Readme.html
|
||||
# and export_layers.py sitting in the root directory of the Gimp plugins:
|
||||
mkdir -p $PKG/usr/lib${LIBDIRSUFFIX}/gimp/2.0/plug-ins/export_layers
|
||||
|
||||
# Several 'zero length' files are added to the package which makepkg will complain
|
||||
# about later but I believe that all are actually required:
|
||||
cp -a export_layers.py export_layers $PKG/usr/lib${LIBDIRSUFFIX}/gimp/2.0/plug-ins/
|
||||
cp -a export_layers.py export_layers Readme.html \
|
||||
$PKG/usr/lib${LIBDIRSUFFIX}/gimp/2.0/plug-ins/export_layers
|
||||
|
||||
# Little in the way of docs to add here as the HTML docs are intended to
|
||||
# be opened from within Gimp. They can still be read without Gimp being open by
|
||||
# reading: /usr/lib${LIBDIRSUFFIX}/gimp/2.0/plug-ins/export_layers/Readme.html
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a Readme.html $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
ln -s /usr/lib${LIBDIRSUFFIX}/gimp/2.0/plug-ins/export_layers/docs \
|
||||
$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="gimp-plugin-export-layers"
|
||||
VERSION="3.2.1"
|
||||
VERSION="3.3.1"
|
||||
HOMEPAGE="https://github.com/khalim19/gimp-plugin-export-layers"
|
||||
DOWNLOAD="https://github.com/khalim19/gimp-plugin-export-layers/releases/download/3.2.1/export_layers-3.2.1.zip"
|
||||
MD5SUM="1effd88c8a05529b43af473ea180848f"
|
||||
DOWNLOAD="https://github.com/khalim19/gimp-plugin-export-layers/releases/download/3.3.1/export_layers-3.3.1.zip"
|
||||
MD5SUM="8ba9097000829dc5051f920231aa2e8a"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
|
|
Loading…
Reference in New Issue