mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
development/textadept: Updated for version 7.8 & fixed symlinks.
Signed-off-by: Ryan P.C. McQuen <ryan.q@linux.com>
This commit is contained in:
parent
43c579ca0e
commit
57c524f9ac
3 changed files with 24 additions and 7 deletions
|
@ -5,3 +5,15 @@ Written in a combination of C and Lua and relentlessly optimized for
|
|||
speed and minimalism over the years, Textadept is an ideal editor for
|
||||
programmers who want endless extensibility without sacrificing speed or
|
||||
succumbing to code bloat and featuritis.
|
||||
|
||||
The following executables are symlinked from /opt/ to /usr/bin/:
|
||||
|
||||
-textadept
|
||||
-textadept-curses
|
||||
-textadeptjit
|
||||
-textadeptjit-curses
|
||||
-tad
|
||||
-tadc
|
||||
|
||||
Note that `tad` and `tadc` are just easier ways to type `textadept`
|
||||
and `textadept-curses`, respectively.
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
# not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
PRGNAM=textadept
|
||||
VERSION=${VERSION:-7.7}
|
||||
VERSION=${VERSION:-7.8}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
|
@ -80,7 +80,12 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | gr
|
|||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
||||
mkdir -p $PKG/usr/bin/
|
||||
ln -sf /opt/$PRGNAM/"${PRGNAM}"* $PKG/usr/bin/
|
||||
ln -sf /opt/$PRGNAM/"${PRGNAM}" $PKG/usr/bin/
|
||||
ln -sf /opt/$PRGNAM/"${PRGNAM}"-curses $PKG/usr/bin/
|
||||
ln -sf /opt/$PRGNAM/"${PRGNAM}"jit $PKG/usr/bin/
|
||||
ln -sf /opt/$PRGNAM/"${PRGNAM}"jit-curses $PKG/usr/bin/
|
||||
ln -sf /opt/$PRGNAM/"${PRGNAM}" $PKG/usr/bin/tad
|
||||
ln -sf /opt/$PRGNAM/"${PRGNAM}"-curses $PKG/usr/bin/tadc
|
||||
|
||||
mkdir -p $PKG/usr/share/pixmaps/
|
||||
ln -sf /opt/$PRGNAM/core/images/${PRGNAM}.png $PKG/usr/share/pixmaps/
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
PRGNAM="textadept"
|
||||
VERSION="7.7"
|
||||
VERSION="7.8"
|
||||
HOMEPAGE="http://foicica.com/textadept/"
|
||||
DOWNLOAD="http://foicica.com/textadept/download/textadept_7.7.i386.tgz"
|
||||
MD5SUM="b36783d74f7a417d8ed9957506e5e521"
|
||||
DOWNLOAD_x86_64="http://foicica.com/textadept/download/textadept_7.7.x86_64.tgz"
|
||||
MD5SUM_x86_64="4f2b9ea5c1937a706f0828de8c564d62"
|
||||
DOWNLOAD="http://foicica.com/textadept/download/textadept_7.8.i386.tgz"
|
||||
MD5SUM="5c3a897d5b17ddbfce36bd93073e65c3"
|
||||
DOWNLOAD_x86_64="http://foicica.com/textadept/download/textadept_7.8.x86_64.tgz"
|
||||
MD5SUM_x86_64="4289c0d603692602ea3a560c5dd3b61d"
|
||||
REQUIRES=""
|
||||
MAINTAINER="Ryan P.C. McQuen"
|
||||
EMAIL="ryan.q@linux.com"
|
||||
|
|
Loading…
Reference in a new issue