From e50988d28b4a7350141c551b5b29c25cf6331221 Mon Sep 17 00:00:00 2001 From: DhabyX Date: Sat, 10 May 2014 17:26:00 +0700 Subject: development/atom: Added (Chrome-based and Hackable text editor). Signed-off-by: Willy Sudiarto Raharjo --- development/atom/README | 10 +++ development/atom/atom.SlackBuild | 126 ++++++++++++++++++++++++++++++++++++++ development/atom/atom.info | 10 +++ development/atom/customBuild.diff | 12 ++++ development/atom/doinst.sh | 3 + development/atom/slack-desc | 19 ++++++ 6 files changed, 180 insertions(+) create mode 100644 development/atom/README create mode 100644 development/atom/atom.SlackBuild create mode 100644 development/atom/atom.info create mode 100644 development/atom/customBuild.diff create mode 100644 development/atom/doinst.sh create mode 100644 development/atom/slack-desc (limited to 'development/atom') diff --git a/development/atom/README b/development/atom/README new file mode 100644 index 0000000000..b747df381c --- /dev/null +++ b/development/atom/README @@ -0,0 +1,10 @@ +Atom is a Chorme-based text editor, hackable and full-featured. + +Atom comes loaded with the features you've come to expect from +a modern text editor, like a file system browser, fuzzy finder for +quickly opening files, fast project-wide search and replace, +snippets, code folding and more. + +To build Atom is necessary to download about 500MB of data, +which are temporarily stored in /tmp/atom-cached-atom-shells +and ~/.atom, which can be deleted after building. diff --git a/development/atom/atom.SlackBuild b/development/atom/atom.SlackBuild new file mode 100644 index 0000000000..d86809d9d8 --- /dev/null +++ b/development/atom/atom.SlackBuild @@ -0,0 +1,126 @@ +#!/bin/sh + +# Slackware build script for atom + +# Copyright 2013 Dhaby Xiloj +# 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. + +PRGNAM=atom +VERSION=0.94.0 +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +#Some variables needed for compile tar version +GITSHA1='806ff4e141f0eb3cf7e9e829f562915fc7f732ed' +GITBRANCH='master' + +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} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -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.gz || tar xvf $CWD/v$VERSION +cd $PRGNAM-$VERSION +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 {} \; + +# patch: adding extra parameter for custom build dir. +patch -p1 < $CWD/customBuild.diff + +echo '*********************************************************************' +echo '* The installation process will download a lot of modules for atom. *' +echo '*********************************************************************' + +JANKY_SHA1=$GITSHA1 \ +JANKY_BRANCH=$GITBRANCH \ +PYTHON=python2 \ +BUILD_DIR=$TMP \ +./script/build + +JANKY_SHA1=$GITSHA1 \ +JANKY_BRANCH=$GITBRANCH \ +PYTHON=python2 \ +BUILD_DIR=$TMP \ +INSTALL_PREFIX=$PKG/usr \ +./script/grunt install + +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +# remove apm symlink for prevent conflicts with apmd package. +rm $PKG/usr/bin/apm + +# move and configure icon and .desktop file +mkdir -p $PKG/usr/share/pixmaps +cp -a resources/atom.png \ + $PKG/usr/share/pixmaps +mkdir -p $PKG/usr/share/applications +sed -e "s#<%=.*%>#Hackable text editor#" \ + -e "s#/usr.*atom#/usr/bin/atom#" \ + resources/linux/Atom.desktop.in > \ + $PKG/usr/share/applications/Atom.desktop + +# delete temporal data +#rm -rf /tmp/atom-cached-atom-shells +#rm -rf ~/.atom/ + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -ar LICENSE.md README.md CONTRIBUTING.md docs \ + $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} diff --git a/development/atom/atom.info b/development/atom/atom.info new file mode 100644 index 0000000000..cd0b8e6e86 --- /dev/null +++ b/development/atom/atom.info @@ -0,0 +1,10 @@ +PRGNAM="atom" +VERSION="0.94.0" +HOMEPAGE="https://atom.io/" +DOWNLOAD="https://codeload.github.com/atom/atom/tar.gz/v0.94.0" +MD5SUM="684b7ba65320387f73057f28e93f3ed6" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="node" +MAINTAINER="DhabyX" +EMAIL="slack.dhabyx@gmail.com" diff --git a/development/atom/customBuild.diff b/development/atom/customBuild.diff new file mode 100644 index 0000000000..52d4a0fd67 --- /dev/null +++ b/development/atom/customBuild.diff @@ -0,0 +1,12 @@ +diff -Naur atom-0.94.0/build/Gruntfile.coffee atom-0.94.0.a/build/Gruntfile.coffee +--- atom-0.94.0/build/Gruntfile.coffee 2014-05-06 10:56:03.000000000 -0600 ++++ atom-0.94.0.a/build/Gruntfile.coffee 2014-05-09 18:58:26.226372541 -0600 +@@ -58,7 +58,7 @@ + installDir = path.join('/Applications', appName) + else + appName = 'Atom' +- tmpDir = '/tmp' ++ tmpDir = process.env.BUILD_DIR ? '/tmp' + buildDir = grunt.option('build-dir') ? path.join(tmpDir, 'atom-build') + symbolsDir = path.join(buildDir, 'Atom.breakpad.syms') + shellAppDir = path.join(buildDir, appName) diff --git a/development/atom/doinst.sh b/development/atom/doinst.sh new file mode 100644 index 0000000000..5fb28930db --- /dev/null +++ b/development/atom/doinst.sh @@ -0,0 +1,3 @@ +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi diff --git a/development/atom/slack-desc b/development/atom/slack-desc new file mode 100644 index 0000000000..e01b1bb143 --- /dev/null +++ b/development/atom/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------------------------------------------------------| +atom: Atom (Chrome-based and Hackable text editor) +atom: +atom: A chorome-based text editor, with full-featured, right out of the +atom: box: file system browser, multiple panes, snippets, and more. +atom: +atom: +atom: +atom: +atom: +atom: +atom: -- cgit v1.2.3