diff options
author | B. Watson <yalhcru@gmail.com> | 2022-05-20 16:41:01 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-05-21 08:25:26 +0700 |
commit | d7cdd9ca3b51afa8ed4a23f6d30e989d82735c3a (patch) | |
tree | ba354332f57d0276e42b9d8419c1360ff0f5724e /development/txr | |
parent | 60bddfbf1dc2180a1b4e1b1a6fd604ebb08d3cd0 (diff) |
development/txr: Added (pattern-based text extraction language)
Signed-off-by: Dave Woodfall <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/txr')
-rw-r--r-- | development/txr/README | 12 | ||||
-rw-r--r-- | development/txr/slack-desc | 19 | ||||
-rw-r--r-- | development/txr/txr.SlackBuild | 103 | ||||
-rw-r--r-- | development/txr/txr.info | 10 |
4 files changed, 144 insertions, 0 deletions
diff --git a/development/txr/README b/development/txr/README new file mode 100644 index 000000000000..9f0f053c8451 --- /dev/null +++ b/development/txr/README @@ -0,0 +1,12 @@ +txr (pattern-based text extraction language) + +TXR is a pragmatic, convenient tool ready to take on your daily +hacking challenges with its dual personality: its whole-document +pattern matching and extraction language for scraping information from +arbitrary text sources, and its powerful data-processing language to +slice through problems like a hot knife through butter. Many tasks +can be accomplished with TXR "one liners" directly from your system +prompt. TXR is relatively new: the project started in 2009. + +If you want to run the test suite, export MAKETESTS=yes in the +script's environment. diff --git a/development/txr/slack-desc b/development/txr/slack-desc new file mode 100644 index 000000000000..beec32003378 --- /dev/null +++ b/development/txr/slack-desc @@ -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 ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +txr: txr (pattern-based text extraction language) +txr: +txr: TXR is a pragmatic, convenient tool ready to take on your daily +txr: hacking challenges with its dual personality: its whole-document +txr: pattern matching and extraction language for scraping information from +txr: arbitrary text sources, and its powerful data-processing language to +txr: slice through problems like a hot knife through butter. Many tasks +txr: can be accomplished with TXR "one liners" directly from your system +txr: prompt. TXR is relatively new: the project started in 2009. +txr: +txr: diff --git a/development/txr/txr.SlackBuild b/development/txr/txr.SlackBuild new file mode 100644 index 000000000000..a0a06e098e20 --- /dev/null +++ b/development/txr/txr.SlackBuild @@ -0,0 +1,103 @@ +#!/bin/bash + +# Slackware build script for txr + +# Written by B. Watson (yalhcru@gmail.com) + +# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. + +# 20220518 bkw: Note: txr-274 isn't the latest release, but txr-275 +# fails to pass its own "make tests". I'm submitting the newest +# version that does pass. + +cd $(dirname $0) ; CWD=$(pwd) + +PRGNAM=txr +VERSION=${VERSION:-274} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +PKGTYPE=${PKGTYPE:-tgz} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then + echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 +cd $PRGNAM-$VERSION +chown -R root:root . +find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \ + \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+ + +# 20220506 bkw: N.B. this is not a regular autoconf script. +./configure \ + --prefix=/usr \ + --opt-flags="$SLKCFLAGS" \ + --mandir=man \ + --parallelmake \ + --install-prefix=$PKG + +make VERBOSE=1 +[ "${MAKETESTS:-no}" = "yes" ] && make tests +make install +strip $PKG/usr/bin/$PRGNAM +gzip -9 $PKG/usr/man/man*/* + +# 20220519 bkw: install vim syntax stuff, but don't use +# the main vim dir with the version number embedded in it +# (e.g. /usr/share/vim/vim82). vim finds the files just fine here, +# and they survive across vim updates: +VIMF=$PKG/usr/share/vim/vimfiles +mkdir -p $VIMF/{syntax,ftdetect} +cp -a *.vim $VIMF/syntax +cat <<EOF >$VIMF/ftdetect/txr.vim +autocmd BufRead,BufNewFile *.txr set filetype=txr | set lisp +autocmd BufRead,BufNewFile *.tl,*.tlo set filetype=tl | set lisp +EOF + +# 20220519 bkw: don't include ChangeLog-2009-2015, it's >700KB and the +# author stopped updating it over 150 releases ago. HACKING-toc.txr is +# a script, not documentation. +PKGDOC=$PKG/usr/doc/$PRGNAM-$VERSION +mkdir -p $PKGDOC +cp -a HACKING RELNOTES $PKGDOC +ln -s ../../share/$PRGNAM/{META,}LICENSE $PKGDOC +cat $CWD/$PRGNAM.SlackBuild > $PKGDOC/$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 diff --git a/development/txr/txr.info b/development/txr/txr.info new file mode 100644 index 000000000000..c9da58d8de3e --- /dev/null +++ b/development/txr/txr.info @@ -0,0 +1,10 @@ +PRGNAM="txr" +VERSION="274" +HOMEPAGE="https://www.nongnu.org/txr/" +DOWNLOAD="https://www.kylheku.com/cgit/txr/snapshot/txr-274.tar.bz2" +MD5SUM="ca5125f88a313cf134407628100b3bee" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="" +MAINTAINER="B. Watson" +EMAIL="yalhcru@gmail.com" |