mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
graphics/scantailor: Added.
Scan Tailor is an interactive post-processing tool for scanned pages. Thanks to Zhischenko Sergey.
This commit is contained in:
parent
2fe1805e14
commit
eaacd2c2b6
4 changed files with 105 additions and 0 deletions
6
graphics/scantailor/README
Normal file
6
graphics/scantailor/README
Normal file
|
@ -0,0 +1,6 @@
|
|||
Scan Tailor is an interactive post-processing tool for scanned
|
||||
pages. It performs operations such as page splitting, deskewing,
|
||||
adding/removing borders, and others. You give it raw scans, and you
|
||||
get pages ready to be printed or assembled into a PDF or DJVU file.
|
||||
Scanning, optical character recognition, and assembling multi-page
|
||||
documents are out of scope of this project.
|
70
graphics/scantailor/scantailor.SlackBuild
Executable file
70
graphics/scantailor/scantailor.SlackBuild
Executable file
|
@ -0,0 +1,70 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for scantailor
|
||||
|
||||
# Written by Zhischenko Sergey <gishenko@mail.ru>
|
||||
|
||||
PRGNAM=scantailor
|
||||
VERSION=${VERSION:-0.9.8}
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
set -e
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
LIBDIRSUFFIX="64"
|
||||
fi
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
find . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
||||
-exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||
-exec chmod 644 {} \;
|
||||
|
||||
mkdir build
|
||||
cd build
|
||||
cmake \
|
||||
-DCMAKE_INSTALL_PREFIX:PATH=/usr \
|
||||
-DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \
|
||||
-DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \
|
||||
-DCMAKE_SKIP_RPATH:BOOL=YES \
|
||||
-DCMAKE_BUILD_TYPE=Release ..
|
||||
|
||||
make
|
||||
make install DESTDIR=$PKG
|
||||
cd ..
|
||||
|
||||
find $PKG | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \
|
||||
xargs strip --strip-unneeded 2> /dev/null
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a \
|
||||
COPYING GPL3.txt VERSION \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
10
graphics/scantailor/scantailor.info
Normal file
10
graphics/scantailor/scantailor.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="scantailor"
|
||||
VERSION="0.9.8"
|
||||
HOMEPAGE="http://scantailor.sourceforge.net/"
|
||||
DOWNLOAD="http://downloads.sourceforge.net/scantailor/scantailor-0.9.8.tar.gz"
|
||||
MD5SUM="ebcb7d0e5ef1d94b2026c7473cca0b35"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Zhischenko Sergey"
|
||||
EMAIL="gishenko@mail.ru"
|
||||
APPROVED="Erik Hanson"
|
19
graphics/scantailor/slack-desc
Normal file
19
graphics/scantailor/slack-desc
Normal file
|
@ -0,0 +1,19 @@
|
|||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description. Line
|
||||
# up the first '|' above the ':' following the base package name, and the '|' on
|
||||
# the right side marks the last column you can put a character in. You must make
|
||||
# exactly 11 lines for the formatting to be correct. It's also customary to
|
||||
# leave one space after the ':'.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
scantailor: Scan Tailor (interactive post-processing tool for scanned pages)
|
||||
scantailor:
|
||||
scantailor: Scan Tailor is an interactive post-processing tool for scanned
|
||||
scantailor: pages. It performs operations such as page splitting, deskewing,
|
||||
scantailor: adding/removing borders, and others. You give it raw scans, and you
|
||||
scantailor: get pages ready to be printed or assembled into a PDF or DJVU file.
|
||||
scantailor: Scanning, optical character recognition, and assembling multi-page
|
||||
scantailor: documents are out of scope of this project.
|
||||
scantailor:
|
||||
scantailor:
|
||||
scantailor:
|
Loading…
Reference in a new issue