diff options
-rw-r--r-- | development/textadept/README | 12 | ||||
-rw-r--r-- | development/textadept/textadept.SlackBuild | 9 | ||||
-rw-r--r-- | development/textadept/textadept.info | 10 |
3 files changed, 24 insertions, 7 deletions
diff --git a/development/textadept/README b/development/textadept/README index 1be28a5735..0f46266045 100644 --- a/development/textadept/README +++ b/development/textadept/README @@ -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. diff --git a/development/textadept/textadept.SlackBuild b/development/textadept/textadept.SlackBuild index 008928d8cd..9de859f6b1 100644 --- a/development/textadept/textadept.SlackBuild +++ b/development/textadept/textadept.SlackBuild @@ -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/ diff --git a/development/textadept/textadept.info b/development/textadept/textadept.info index 7c69d31c89..e841a47ab0 100644 --- a/development/textadept/textadept.info +++ b/development/textadept/textadept.info @@ -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" |