diff options
author | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-12 11:47:45 +0200 |
---|---|---|
committer | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-12 11:47:45 +0200 |
commit | 84c0c81017d8b34163d0bc6fe85172f482f06fb9 (patch) | |
tree | bfc1044bf1d044490a84dbf1db6296ef1bb1d99d /development | |
parent | 573c6c8d02cb2cb67747c10a7962aaafd0fcfdc0 (diff) | |
download | slackbuilds-84c0c81017d8b34163d0bc6fe85172f482f06fb9.tar.gz |
development/io: Removed from 12.2 repository
Diffstat (limited to 'development')
-rw-r--r-- | development/io/README | 1 | ||||
-rw-r--r-- | development/io/io.SlackBuild | 60 | ||||
-rw-r--r-- | development/io/io.info | 8 | ||||
-rw-r--r-- | development/io/slack-desc | 19 |
4 files changed, 0 insertions, 88 deletions
diff --git a/development/io/README b/development/io/README deleted file mode 100644 index 62736d9419..0000000000 --- a/development/io/README +++ /dev/null @@ -1 +0,0 @@ -io is a small, prototype-based programming language. diff --git a/development/io/io.SlackBuild b/development/io/io.SlackBuild deleted file mode 100644 index a1e7648cb8..0000000000 --- a/development/io/io.SlackBuild +++ /dev/null @@ -1,60 +0,0 @@ -#!/bin/sh - -# Slackware build script for the io language -# Written by Thiago Coutinho <thiagocoutinho1[@]gmail.com> - -# Modified by the SlackBuilds.org project. - -PRGNAM=io -VERSION=2008.03.30 -ARCH=${ARCH:-i486} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" -fi - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf stevedekorte-io-* -tar xvf $CWD/stevedekorte-io-*.tar.gz -cd stevedekorte-io-* -chown -R root:root . -chmod -R u+w,go+r-w,a-s . - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ - make vm \ - INSTALL_PREFIX=$PKG/usr -make install \ - INSTALL_PREFIX=$PKG/usr - -# Wow. That's all I'll say. --rworkman -# These are the same file - 2.7 MB each... -cd $PKG/usr/bin - rm -f libiovmall.so - ln -s /usr/lib/libiovmall.so . -cd - - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a 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 - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz diff --git a/development/io/io.info b/development/io/io.info deleted file mode 100644 index 311b360fdd..0000000000 --- a/development/io/io.info +++ /dev/null @@ -1,8 +0,0 @@ -PRGNAM="io" -VERSION="2008.03.30" -HOMEPAGE="http://iolanguage.com" -DOWNLOAD="http://github.com/tarballs/stevedekorte-io-4debb4b25740b8dd46ad16f43f04f0fc5b4a23e1.tar.gz" -MD5SUM="fbf7dc8a8d37bf2f21c99618c8a4e6e4" -MAINTAINER="Thiago Coutinho" -EMAIL="thiagocoutinho1@gmail.com" -APPROVED="Michiel,rworkman" diff --git a/development/io/slack-desc b/development/io/slack-desc deleted file mode 100644 index 1ae0c48f27..0000000000 --- a/development/io/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# 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 ':'. - - |-----handy-ruler------------------------------------------------------| -io: io (small, prototype-based programming language) -io: -io: Inspired by Smalltalk (values are objects, messages are dynamic), -io: Self (prototype-based), NewtonScript (differential inheritance), -io: Act1 (actors and futures for concurrency), LISP (code is a runtime -io: inspectable/modifiable tree) and Lua (small, embeddable). -io: -io: Features: small vm (~10K semicolons), multi-state (multiple VMs run -io: in the same process), incremental collector, weak links, actor-based -io: concurrency, C99 implementation, 64bit clean exceptions, embeddable. -io: |