summaryrefslogtreecommitdiffstats
path: root/development/check
diff options
context:
space:
mode:
Diffstat (limited to 'development/check')
-rw-r--r--development/check/README8
-rw-r--r--development/check/check.SlackBuild89
-rw-r--r--development/check/check.info8
-rw-r--r--development/check/slack-desc19
4 files changed, 0 insertions, 124 deletions
diff --git a/development/check/README b/development/check/README
deleted file mode 100644
index 943c0cb0d7..0000000000
--- a/development/check/README
+++ /dev/null
@@ -1,8 +0,0 @@
-Check is a unit test framework for C. It features a simple interface
-for defining unit tests, putting little in the way of the
-developer. Tests are run in a separate address space, so Check can
-catch both assertion failures and code errors that cause segmentation
-faults or other signals. The output from unit tests can be used within
-source code editors and IDEs.
-
-See the project's home page for more information, including a tutorial.
diff --git a/development/check/check.SlackBuild b/development/check/check.SlackBuild
deleted file mode 100644
index fa4d692b00..0000000000
--- a/development/check/check.SlackBuild
+++ /dev/null
@@ -1,89 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for Check
-
-# Copyright 2006 Jules Villard <theblatte@loulous.org>
-# 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.
-
-# Modified by Roberto Neri <rneri@libero.it> to
-# - upgrade to version 0.9.5 and miscellaneous script cleanup
-# Modified by the SlackBuilds.org project 20071002 -RW
-
-# Exit on most errors
-set -e
-
-PRGNAM=check
-VERSION=0.9.5
-ARCH=${ARCH:-i486}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-CWD=$(pwd)
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-check
-OUTPUT=${OUTPUT:-/tmp}
-
-if [ "$ARCH" = "i486" ]; then
- SLKCFLAGS="-O2 -march=i486 -mtune=i686"
-elif [ "$ARCH" = "i686" ]; then
- SLKCFLAGS="-O2 -march=i686 -mtune=i686"
-fi
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$VERSION
-tar xvfz $CWD/$PRGNAM-$VERSION.tar.gz
-cd $PRGNAM-$VERSION
-chown -R root:root .
-chmod -R a-s,u+w,go+r-w .
-
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=/usr
-
-make
-make install DESTDIR=$PKG
-
-# Strip binaries and libraries
-( cd $PKG
- find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
- find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
-)
-
-# No man page is provided
-
-# Compress info pages and remove /usr/info/dir
-rm -f $PKG/usr/info/dir
-gzip -9 $PKG/usr/info/*.info*
-
-# Move docs directory from /usr/share/doc/$PRGNAM to /usr/doc/$PRGNAM-$VERSION
-mkdir -p $PKG/usr/doc
-mv $PKG/usr/share/doc/$PRGNAM $PKG/usr/doc/$PRGNAM-$VERSION
-rm -fr $PKG/usr/share/doc
-cp -a AUTHORS INSTALL $PKG/usr/doc/$PRGNAM-$VERSION
-# Include the SlackBuild script in the documentation directory
-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/check-$VERSION-$ARCH-$BUILD$TAG.tgz
diff --git a/development/check/check.info b/development/check/check.info
deleted file mode 100644
index 5f242ab606..0000000000
--- a/development/check/check.info
+++ /dev/null
@@ -1,8 +0,0 @@
-PRGNAM="check"
-VERSION="0.9.5"
-HOMEPAGE="http://check.sourceforge.net/"
-DOWNLOAD="http://downloads.sourceforge.net/check/check-0.9.5.tar.gz"
-MD5SUM="30143c7974b547a12a7da47809a90951"
-MAINTAINER="Roberto Neri"
-EMAIL="rneri@libero.it"
-APPROVED="rworkman"
diff --git a/development/check/slack-desc b/development/check/slack-desc
deleted file mode 100644
index 84e15fe1fc..0000000000
--- a/development/check/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------------------------------------------------------|
-check: Check (unit test framework)
-check:
-check:
-check: Check is a unit test framework for C. It features a simple interface
-check: for defining unit tests, putting little in the way of the
-check: developer. Tests are run in a separate address space, so Check can
-check: catch both assertion failures and code errors that cause segmentation
-check: faults or other signals. The output from unit tests can be used within
-check: source code editors and IDEs.
-check:
-check: