development/sublime_text: Added (A sophisticated text editor)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
parent
a4fe364f10
commit
ef45ab298b
|
@ -0,0 +1,6 @@
|
|||
Sublime Text 2 is a sophisticated text editor for code, html and prose.
|
||||
You'll love the slick user interface and extraordinary features.
|
||||
|
||||
Sublime Text 2 may be downloaded and evaluated for free; however, a
|
||||
license must be purchased for continued use. There is currently no
|
||||
enforced time limit for the evaluation.
|
|
@ -0,0 +1,10 @@
|
|||
if [ -x /usr/bin/update-desktop-database ]; then
|
||||
/usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
|
||||
fi
|
||||
|
||||
if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
|
||||
if [ -x /usr/bin/gtk-update-icon-cache ]; then
|
||||
/usr/bin/gtk-update-icon-cache usr/share/icons/hicolor >/dev/null 2>&1
|
||||
fi
|
||||
fi
|
||||
|
|
@ -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------------------------------------------------------|
|
||||
sublime_text: Sublime Text (A sophisticated text editor)
|
||||
sublime_text:
|
||||
sublime_text: Sublime Text is a sophisticated text editor for code, html and prose.
|
||||
sublime_text: You'll love the slick user interface and extraordinary features.
|
||||
sublime_text:
|
||||
sublime_text: For more information, visit http://www.sublimetext.com/
|
||||
sublime_text:
|
||||
sublime_text:
|
||||
sublime_text:
|
||||
sublime_text:
|
||||
sublime_text:
|
|
@ -0,0 +1,81 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Slackware build script for Sublime Text 2.0
|
||||
# Builds a Slackware package from the Sublime Text 2 binary tarballs.
|
||||
# Anyone can freely modify and/or distribute this script without restrictions
|
||||
#
|
||||
# Written by Luke Williams ( xocel@iquidus.org )
|
||||
|
||||
PRGNAM=sublime_text
|
||||
VERSION=${VERSION:-2.0}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
TARBALL_x86="Sublime Text 2.0.tar.bz2" # Name of 32bit tarball
|
||||
TARBALL_x86_64="Sublime Text 2.0 x64.tar.bz2" # Name of 64bit tarball
|
||||
TARBALL_ROOT="Sublime Text 2" # Name of tarballs root directory
|
||||
|
||||
# Set LIBDIRSUFFIX and TARBALL.
|
||||
if [ "$ARCH" = "x86_64" ]; then
|
||||
LIBDIRSUFFIX="64"
|
||||
TARBALL="$TARBALL_x86_64"
|
||||
else
|
||||
LIBDIRSUFFIX=""
|
||||
TARBALL="$TARBALL_x86"
|
||||
fi
|
||||
|
||||
set -eu
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf "$TARBALL_ROOT"
|
||||
tar xvf "$CWD/$TARBALL"
|
||||
cd "$TARBALL_ROOT"
|
||||
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 -p $PKG/opt/$PRGNAM
|
||||
cp -a * $PKG/opt/$PRGNAM
|
||||
|
||||
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
||||
mkdir -p $PKG/usr/bin
|
||||
ln -sf /opt/$PRGNAM/sublime_text $PKG/usr/bin
|
||||
|
||||
mkdir -p $PKG/usr/share/applications
|
||||
cat $CWD/$PRGNAM.desktop > $PKG/usr/share/applications/$PRGNAM.desktop
|
||||
|
||||
for size in 16x16 32x32 48x48 128x128 256x256 ; do
|
||||
mkdir -p $PKG/usr/share/icons/hicolor/$size/apps
|
||||
ln -s /opt/$PRGNAM/Icon/$size/sublime_text.png \
|
||||
$PKG/usr/share/icons/hicolor/$size/apps/ ;
|
||||
done
|
||||
|
||||
mkdir -p $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
|
||||
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
|
@ -0,0 +1,8 @@
|
|||
[Desktop Entry]
|
||||
Name=Sublime Text
|
||||
GenericName=Text Editor
|
||||
Exec=sublime_text
|
||||
Icon=sublime_text
|
||||
Type=Application
|
||||
Terminal=false
|
||||
Categories=Utility;TextEditor;
|
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="sublime_text"
|
||||
VERSION="2.0"
|
||||
HOMEPAGE="http://www.sublimetext.com"
|
||||
DOWNLOAD="http://c758482.r82.cf2.rackcdn.com/Sublime%20Text%202.0.tar.bz2"
|
||||
MD5SUM="6d1fbbfab5df4df70564c09f5067a9ef"
|
||||
DOWNLOAD_x86_64="http://c758482.r82.cf2.rackcdn.com/Sublime%20Text%202.0%20x64.tar.bz2"
|
||||
MD5SUM_x86_64="a157b7ae2616013b6ea21f308f277948"
|
||||
MAINTAINER="Luke Williams"
|
||||
EMAIL="xocel@iquidus.org"
|
||||
APPROVED="rworkman"
|
Loading…
Reference in New Issue