academic/xoscope: Added to 12.1 repository

This commit is contained in:
Kyle Guinn 2010-05-11 22:53:07 +02:00 committed by Erik Hanson
parent 5bbe346efb
commit 3c3feabb7c
4 changed files with 93 additions and 0 deletions

3
academic/xoscope/README Normal file
View file

@ -0,0 +1,3 @@
x*oscope is a digital oscilloscope that uses a sound card (via /dev/dsp or
EsounD) and/or Radio Shack ProbeScope (Cat. No. 220-0310) a.k.a osziFOX as the
signal input.

View file

@ -0,0 +1,11 @@
xoscope: xoscope (Digital Oscilloscope)
xoscope:
xoscope: x*oscope is a digital oscilloscope that uses a sound card
xoscope: (via /dev/dsp or EsounD) and/or Radio Shack ProbeScope
xoscope: (Cat. No. 220-0310) a.k.a. osziFOX as the signal input.
xoscope:
xoscope:
xoscope:
xoscope:
xoscope:
xoscope:

View file

@ -0,0 +1,71 @@
#!/bin/sh
# Slackware build script for xoscope
# Written by Kyle Guinn <elyk03@gmail.com>
# Modified by SlackBuilds.org (not parallel-build compatible)
PRGNAM="xoscope"
VERSION="1.12"
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM-$VERSION
OUTPUT=${OUTPUT:-/tmp}
DOCS="AUTHORS COPYING ChangeLog HARDWARE INSTALL INTERNALS NEWS README* TODO*"
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
fi
set -e
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
tar -xzvf $CWD/$PRGNAM-$VERSION.tgz
cd $PRGNAM-$VERSION
chown -R root:root .
chmod -R u+w,go+r-w,a-st .
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var
make
make install DESTDIR=$PKG
( 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
)
( cd $PKG/usr/man
find . -type f -exec gzip -9 {} \;
for i in $(find . -type l); do \
ln -s $(readlink $i).gz $i.gz; rm $i; \
done
)
chmod -x $PKG/usr/libexec/xoscope/ofreq.ini
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

View file

@ -0,0 +1,8 @@
PRGNAM="xoscope"
VERSION="1.12"
HOMEPAGE="http://xoscope.sourceforge.net/"
DOWNLOAD="http://downloads.sourceforge.net/xoscope/xoscope-1.12.tgz"
MD5SUM="89f8019a772713a976b634305d29cfe5"
MAINTAINER="Kyle Guinn"
EMAIL="elyk03@gmail.com"
APPROVED="Erik Hanson"