diff options
Diffstat (limited to 'graphics/unpaper/unpaper.SlackBuild')
-rw-r--r-- | graphics/unpaper/unpaper.SlackBuild | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/graphics/unpaper/unpaper.SlackBuild b/graphics/unpaper/unpaper.SlackBuild index 9eb63983968f0..96c606e8e38b4 100644 --- a/graphics/unpaper/unpaper.SlackBuild +++ b/graphics/unpaper/unpaper.SlackBuild @@ -3,6 +3,8 @@ # Slackware build script for unpaper # Copyright 2008-2014 LukenShiro, Italy +# Copyright 2019 Logan Rathbone <poprocks@gmail.com> +# # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -21,10 +23,21 @@ # WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -# Slackware build script for scrot +# +# CHANGELOG +# +# 20191107 Logan Rathbone <poprocks@gmail.com> 6.1-1 +# - Update to 6.1 +# - Add ffmpeg as new dependency. +# - As of time of writing, works against ffmpeg3 and 4 (as shipped +# with current). Don't try to build against ffmpeg4 from SBO +# presently, as it places pkgconfig files in the 'ffmpeg4' sub- +# dir. +# - The ffmpeg dep can be removed once 15.0 ships, as it will be +# shipped wth the distro. PRGNAM=unpaper -VERSION=${VERSION:-5.1} +VERSION=${VERSION:-6.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -81,7 +94,7 @@ 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 mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/ -cp INSTALL $PKG/usr/doc/$PRGNAM-$VERSION/ +cp AUTHORS COPYING NEWS README.md $PKG/usr/doc/$PRGNAM-$VERSION/ cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install |