From 55aff64d6359c3e72489e3ea4f7781cae27950c4 Mon Sep 17 00:00:00 2001 From: Ryan P.C. McQuen Date: Wed, 15 Jan 2014 14:18:54 +0700 Subject: development/brackets: Added (source code editor for web designers). Signed-off-by: Willy Sudiarto Raharjo --- development/brackets/README | 2 + development/brackets/brackets.SlackBuild | 82 ++++++++++++++++++++++++++++++++ development/brackets/brackets.info | 10 ++++ development/brackets/slack-desc | 19 ++++++++ 4 files changed, 113 insertions(+) create mode 100644 development/brackets/README create mode 100644 development/brackets/brackets.SlackBuild create mode 100644 development/brackets/brackets.info create mode 100644 development/brackets/slack-desc (limited to 'development') diff --git a/development/brackets/README b/development/brackets/README new file mode 100644 index 0000000000..1c46d7c5bb --- /dev/null +++ b/development/brackets/README @@ -0,0 +1,2 @@ +Brackets is an open source code editor for web designers +and front-end developers. diff --git a/development/brackets/brackets.SlackBuild b/development/brackets/brackets.SlackBuild new file mode 100644 index 0000000000..f68a46d3f6 --- /dev/null +++ b/development/brackets/brackets.SlackBuild @@ -0,0 +1,82 @@ +#!/bin/sh + +# Copyright 2014 Ryan P.C. McQuen +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +PKGNAM=brackets +RELEASE=sprint +VERSION=${VERSION:-35} + +# Allow $ARCH to be preset before running the script. This is useful in the +# case where someone is running a 32-bit chroot environment under an x86_64 +# kernel: +ARCH=${ARCH:-$(uname -m)} + +case "$ARCH" in + i?86) DEBARCH="LINUX32" ; LIBDIRSUFFIX="" ; ARCH=i386 ;; + x86_64) DEBARCH="LINUX64" ; LIBDIRSUFFIX="64" ; ARCH=x86_64 ;; + *) echo "Package for $(uname -m) architecture is not available." ; exit 1 ;; +esac + +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ ! $UID = 0 ]; then + cat << EOF + +This script must be run as root. + +EOF + exit 1 +fi + +set -e + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PKGNAM +OUTPUT=${OUTPUT:-/tmp} + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $PKG +ar p $CWD/brackets-${RELEASE}-${VERSION}-${DEBARCH}.deb data.tar.gz | tar xzv +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -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 {} \; + +# Make sure top-level perms are correct: +chmod 0755 . + +# Install a .desktop launcher: +sed -i -e "s#Icon=brackets#Icon=/opt/brackets/appshell256.png#" \ + $PKG/opt/brackets/brackets.desktop +mkdir -p $PKG/usr/share/applications +ln -s /opt/brackets/brackets.desktop \ + $PKG/usr/share/applications/brackets.desktop + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PKGNAM-$RELEASE-$VERSION-$ARCH-$BUILD$TAG.tgz diff --git a/development/brackets/brackets.info b/development/brackets/brackets.info new file mode 100644 index 0000000000..b82b8d911d --- /dev/null +++ b/development/brackets/brackets.info @@ -0,0 +1,10 @@ +PRGNAM="brackets" +VERSION="35" +HOMEPAGE="http://brackets.io" +DOWNLOAD="https://bitbucket.org/ryanpcmcquen/direct-links-for-slackbuilds/downloads/brackets-sprint-35-LINUX32.deb" +MD5SUM="77e147bf1cffeaaa619bbca0f682e943" +DOWNLOAD_x86_64="https://bitbucket.org/ryanpcmcquen/direct-links-for-slackbuilds/downloads/brackets-sprint-35-LINUX64.deb" +MD5SUM_x86_64="9fe1a331b3bd67b0b9251a17dde1d7de" +REQUIRES="" +MAINTAINER="Ryan P.C. McQuen" +EMAIL="ryan.q@linux.com" diff --git a/development/brackets/slack-desc b/development/brackets/slack-desc new file mode 100644 index 0000000000..11d4c567cf --- /dev/null +++ b/development/brackets/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------------------------------------------------------| +brackets: Brackets (source code editor for web designers) +brackets: +brackets: Brackets is an open source code editor for +brackets: web designers and front-end developers. +brackets: +brackets: It features a live preview function, JS debugging, and is built +brackets: with web technologies. +brackets: +brackets: +brackets: For more information see the homepage at: +brackets: http://brackets.io -- cgit v1.2.3