summaryrefslogtreecommitdiffstats
path: root/ruby/ruby-gtk2/ruby-gtk2.SlackBuild
diff options
context:
space:
mode:
author Robby Workman2013-11-15 07:54:38 +0100
committer Robby Workman2013-11-24 07:07:11 +0100
commitb2b3af6447e8b358f00cb42bab159695f40fd71b (patch)
tree01e2df6034306baa08b2a6c0a40c353ccbc76389 /ruby/ruby-gtk2/ruby-gtk2.SlackBuild
parent0d5e97fc3526ea459da777dccba1cb89e1459cf7 (diff)
downloadslackbuilds-b2b3af6447e8b358f00cb42bab159695f40fd71b.tar.gz
ruby/ruby-gtk2: Removed (build failure)
There's a newer version available, but it's not a drop-in replacement, so Batts is going to have to bat this one around a bit ;-) Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'ruby/ruby-gtk2/ruby-gtk2.SlackBuild')
-rw-r--r--ruby/ruby-gtk2/ruby-gtk2.SlackBuild54
1 files changed, 0 insertions, 54 deletions
diff --git a/ruby/ruby-gtk2/ruby-gtk2.SlackBuild b/ruby/ruby-gtk2/ruby-gtk2.SlackBuild
deleted file mode 100644
index 6ae7521d12..0000000000
--- a/ruby/ruby-gtk2/ruby-gtk2.SlackBuild
+++ /dev/null
@@ -1,54 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for ruby-gtk2
-
-# Written by Vincent Batts, vbatts@hashbangbash.com
-
-PRGNAM=ruby-gtk2
-VERSION=${VERSION:-0.19.3}
-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}
-
-set -e
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
-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 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
- -exec chmod 644 {} \;
-
-ruby extconf.rb
-make
-make install DESTDIR=$PKG
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a \
- AUTHORS COPYING.LIB ChangeLog NEWS README \
- $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
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}