mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
libraries/tre: New maintainer.
Signed-off-by: B. Watson <yalhcru@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
5aae23bcf1
commit
e9f70d2687
4 changed files with 30 additions and 23 deletions
|
@ -1,3 +1,8 @@
|
||||||
TRE is a lightweight, robust, and efficient POSIX compliant regexp
|
tre (regular expression matching library)
|
||||||
|
|
||||||
|
TRE is a lightweight, robust, and efficient POSIX compliant regex
|
||||||
matching library with some exciting features such as approximate
|
matching library with some exciting features such as approximate
|
||||||
(fuzzy) matching.
|
(fuzzy) matching.
|
||||||
|
|
||||||
|
This includes the tre C library, python3 library, and the command-line
|
||||||
|
tool "agrep".
|
||||||
|
|
|
@ -6,14 +6,14 @@
|
||||||
# customary to leave one space after the ':' except on otherwise blank lines.
|
# customary to leave one space after the ':' except on otherwise blank lines.
|
||||||
|
|
||||||
|-----handy-ruler------------------------------------------------------|
|
|-----handy-ruler------------------------------------------------------|
|
||||||
tre: tre (Regexp Matching Library)
|
tre: tre (regular expression matching library)
|
||||||
tre:
|
tre:
|
||||||
tre: TRE is a lightweight, robust, and efficient POSIX compliant regexp
|
tre: TRE is a lightweight, robust, and efficient POSIX compliant regex
|
||||||
tre: matching library with some exciting features such as approximate
|
tre: matching library with some exciting features such as approximate
|
||||||
tre: (fuzzy) matching.
|
tre: (fuzzy) matching.
|
||||||
tre:
|
tre:
|
||||||
tre: Homepage: https://laurikari.net/tre/
|
tre: This includes the tre C library, python3 library, and the command-line
|
||||||
tre:
|
tre: tool "agrep".
|
||||||
tre:
|
tre:
|
||||||
tre:
|
tre:
|
||||||
tre:
|
tre:
|
||||||
|
|
|
@ -2,8 +2,9 @@
|
||||||
|
|
||||||
# Slackware build script for TRE
|
# Slackware build script for TRE
|
||||||
|
|
||||||
# Copyright 2008 Frank Caraballo <fecaraballo{at}gmail{dot}com>
|
# Copyright 2008 Frank Caraballo <email removed>
|
||||||
# Maintained 2013-2021 by Benjamin Trigona-Harany <slackbuilds@jaxartes.net>
|
# Maintained 2013-2021 by Benjamin Trigona-Harany <email removed>
|
||||||
|
# Maintained 2021- by B. Watson <yalhcru@gmail.com>
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use of this script, with or without modification, is
|
# Redistribution and use of this script, with or without modification, is
|
||||||
|
@ -23,11 +24,17 @@
|
||||||
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
|
# 20211018 bkw: v0.8.0, BUILD=3
|
||||||
|
# - take over maintenance.
|
||||||
|
# - strip python shared lib.
|
||||||
|
# - move HTML docs to docdir html/, plus include the CSS.
|
||||||
|
# - get rid of useless INSTALL from docdor.
|
||||||
|
|
||||||
cd $(dirname $0) ; CWD=$(pwd)
|
cd $(dirname $0) ; CWD=$(pwd)
|
||||||
|
|
||||||
PRGNAM=tre
|
PRGNAM=tre
|
||||||
VERSION=${VERSION:-0.8.0}
|
VERSION=${VERSION:-0.8.0}
|
||||||
BUILD=${BUILD:-2}
|
BUILD=${BUILD:-3}
|
||||||
TAG=${TAG:-_SBo}
|
TAG=${TAG:-_SBo}
|
||||||
PKGTYPE=${PKGTYPE:-tgz}
|
PKGTYPE=${PKGTYPE:-tgz}
|
||||||
|
|
||||||
|
@ -39,9 +46,6 @@ if [ -z "$ARCH" ]; then
|
||||||
esac
|
esac
|
||||||
fi
|
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
|
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
|
||||||
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
|
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
|
||||||
exit 0
|
exit 0
|
||||||
|
@ -74,11 +78,8 @@ rm -rf $PRGNAM-$VERSION
|
||||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
|
tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
|
||||||
cd $PRGNAM-$VERSION
|
cd $PRGNAM-$VERSION
|
||||||
chown -R root:root .
|
chown -R root:root .
|
||||||
find -L . \
|
find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \
|
||||||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
\! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+
|
||||||
-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 {} \;
|
|
||||||
|
|
||||||
CFLAGS="$SLKCFLAGS" \
|
CFLAGS="$SLKCFLAGS" \
|
||||||
./configure \
|
./configure \
|
||||||
|
@ -97,14 +98,15 @@ cd python
|
||||||
CFLAGS="-I$PKG/usr/include" \
|
CFLAGS="-I$PKG/usr/include" \
|
||||||
LDFLAGS="-L$PKG/usr/lib$LIBDIRSUFFIX" \
|
LDFLAGS="-L$PKG/usr/lib$LIBDIRSUFFIX" \
|
||||||
python3 setup.py install --root=$PKG
|
python3 setup.py install --root=$PKG
|
||||||
|
strip $PKG/usr/lib*/python*/site-packages/*.so
|
||||||
cd -
|
cd -
|
||||||
|
|
||||||
find $PKG/usr/man -type f -exec gzip -9 {} \;
|
gzip -9 $PKG/usr/man/man?/*.*
|
||||||
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
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/html
|
||||||
cp -a AUTHORS ChangeLog INSTALL LICENSE NEWS README THANKS TODO doc/*.html \
|
cp -a AUTHORS ChangeLog LICENSE NEWS README THANKS TODO \
|
||||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
|
cp -a doc/*.{html,css} $PKG/usr/doc/$PRGNAM-$VERSION/html
|
||||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||||
|
|
||||||
mkdir -p $PKG/install
|
mkdir -p $PKG/install
|
||||||
|
|
|
@ -6,5 +6,5 @@ MD5SUM="b4d3232593dadf6746f4727bdda20b41"
|
||||||
DOWNLOAD_x86_64=""
|
DOWNLOAD_x86_64=""
|
||||||
MD5SUM_x86_64=""
|
MD5SUM_x86_64=""
|
||||||
REQUIRES=""
|
REQUIRES=""
|
||||||
MAINTAINER="Benjamin Trigona-Harany"
|
MAINTAINER="B. Watson"
|
||||||
EMAIL="slackbuilds@jaxartes.net"
|
EMAIL="yalhcru@gmail.com"
|
||||||
|
|
Loading…
Reference in a new issue