diff options
-rw-r--r-- | development/lighttable/doinst.sh | 3 | ||||
-rw-r--r-- | development/lighttable/lighttable.SlackBuild | 48 | ||||
-rw-r--r-- | development/lighttable/lighttable.info | 10 |
3 files changed, 34 insertions, 27 deletions
diff --git a/development/lighttable/doinst.sh b/development/lighttable/doinst.sh new file mode 100644 index 0000000000..5fb28930db --- /dev/null +++ b/development/lighttable/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/lighttable/lighttable.SlackBuild b/development/lighttable/lighttable.SlackBuild index a4e01b78ff..83e7584209 100644 --- a/development/lighttable/lighttable.SlackBuild +++ b/development/lighttable/lighttable.SlackBuild @@ -1,29 +1,32 @@ #!/bin/sh + +# Slackware build script for Light Table # -# 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. +# Ryan P.C. McQuen | Everett, WA | ryan.q@linux.com + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version, with the following exception: +# the text of the GPL license may be omitted. + +# This program is distributed in the hope that it will be useful, but +# without any warranty; without even the implied warranty of +# merchantability or fitness for a particular purpose. Compiling, +# interpreting, executing or merely reading the text of the program +# may result in lapses of consciousness and/or very being, up to and +# including the end of all existence and the Universe as we know it. +# See the GNU General Public License for more details. + +# You may have received a copy of the GNU General Public License along +# with this program (most likely, a file named COPYING). If not, see +# <http://www.gnu.org/licenses/>. + PRGNAM=lighttable SRCNAM=LightTable -VERSION=${VERSION:-0.6.5} -BUILD=${BUILD:-2} +VERSION=${VERSION:-0.6.6} +BUILD=${BUILD:-1} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -63,7 +66,7 @@ cd "$TARBALL_ROOT" 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 \ + -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 {} \; @@ -87,6 +90,7 @@ 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/lighttable/lighttable.info b/development/lighttable/lighttable.info index 424f3d82af..05b43d6ee1 100644 --- a/development/lighttable/lighttable.info +++ b/development/lighttable/lighttable.info @@ -1,10 +1,10 @@ PRGNAM="lighttable" -VERSION="0.6.5" +VERSION="0.6.6" HOMEPAGE="http://www.lighttable.com" -DOWNLOAD="https://d35ac8ww5dfjyg.cloudfront.net/playground/bins/0.6.5/LightTableLinux.tar.gz" -MD5SUM="fe4f06707eb1eff509d3dce965019528" -DOWNLOAD_x86_64="http://d35ac8ww5dfjyg.cloudfront.net/playground/bins/0.6.5/LightTableLinux64.tar.gz" -MD5SUM_x86_64="94d3f5906db70bfc272686160ae90d67" +DOWNLOAD="https://d35ac8ww5dfjyg.cloudfront.net/playground/bins/0.6.6/LightTableLinux.tar.gz" +MD5SUM="01d3f4c8a398fb335c7c4a2810023655" +DOWNLOAD_x86_64="https://d35ac8ww5dfjyg.cloudfront.net/playground/bins/0.6.6/LightTableLinux64.tar.gz" +MD5SUM_x86_64="2c6d5d1237b526cfb6d7a33ff4476cb5" REQUIRES="" MAINTAINER="Ryan P.C. McQuen" EMAIL="ryan.q@linux.com" |