diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2016-01-02 02:33:30 -0600 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-01-17 09:40:16 +0700 |
commit | 29407d48b0332fdca81a65619c7d65fbbb2e4258 (patch) | |
tree | 591a053d5b769bb93ce5bdc733df1a72823f000a | |
parent | cabdaa0e17b1efa6519476e0d6f1c43224ec5a61 (diff) | |
download | slackbuilds-29407d48b0332fdca81a65619c7d65fbbb2e4258.tar.gz |
development/orc: Removed (included in Slackware 14.2)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
-rw-r--r-- | development/orc/README | 5 | ||||
-rw-r--r-- | development/orc/orc.SlackBuild | 80 | ||||
-rw-r--r-- | development/orc/orc.info | 10 | ||||
-rw-r--r-- | development/orc/slack-desc | 19 |
4 files changed, 0 insertions, 114 deletions
diff --git a/development/orc/README b/development/orc/README deleted file mode 100644 index 118f4cccec..0000000000 --- a/development/orc/README +++ /dev/null @@ -1,5 +0,0 @@ -Orc is a library and set of tools for compiling and executing very -simple programs that operate on arrays of data. The language is a generic -assembly language that represents many of the features available in SIMD -architectures, including saturated addition and subtraction, and many -arithmetic operations. diff --git a/development/orc/orc.SlackBuild b/development/orc/orc.SlackBuild deleted file mode 100644 index 9150e2ad66..0000000000 --- a/development/orc/orc.SlackBuild +++ /dev/null @@ -1,80 +0,0 @@ -#!/bin/sh - -# Slackware build script for orc - -# Written by M.Dinslage (daedra1980@gmail.com) - -PRGNAM=orc -VERSION=${VERSION:-0.4.23} -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} - -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.xz -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 {} \; - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr \ - --libdir=/usr/lib${LIBDIRSUFFIX} \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --mandir=/usr/man \ - --docdir=/usr/doc/$PRGNAM-$VERSION \ - --disable-static \ - --build=$ARCH-slackware-linux - -make -make install DESTDIR=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a COPYING README TODO $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} diff --git a/development/orc/orc.info b/development/orc/orc.info deleted file mode 100644 index b91f690a64..0000000000 --- a/development/orc/orc.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="orc" -VERSION="0.4.23" -HOMEPAGE="http://code.entropywave.com/projects/orc/" -DOWNLOAD="http://gstreamer.freedesktop.org/data/src/orc/orc-0.4.23.tar.xz" -MD5SUM="72e0612ace54d77aa2f7a006348ee81a" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="" -MAINTAINER="M.Dinslage" -EMAIL="daedra1980@gmail.com" diff --git a/development/orc/slack-desc b/development/orc/slack-desc deleted file mode 100644 index 930c6fc921..0000000000 --- a/development/orc/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 ':' except on otherwise blank lines. - - |-----handy-ruler------------------------------------------------------| -orc: orc (The Oil Runtime Compiler) -orc: -orc: Orc is a library and set of tools for compiling and executing very -orc: simple programs that operate on arrays of data. The language is -orc: a generic assembly language that represents many of the features -orc: available in SIMD architectures, including saturated addition and -orc: subtraction, and many arithmetic operations. -orc: -orc: -orc: -orc: |