mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
network/bsflite: Added to 12.0 repository
This commit is contained in:
parent
93684ef8a4
commit
f648a0e801
4 changed files with 81 additions and 0 deletions
5
network/bsflite/README
Normal file
5
network/bsflite/README
Normal file
|
@ -0,0 +1,5 @@
|
|||
BSFlite is a rather small and minimalist client for AOL's Instant
|
||||
Messenger(TM) service. Instead of having a full screen console
|
||||
interface, BSFlite employs a command line interface that allows your
|
||||
fingers to do all of the work without needlessly sifting through
|
||||
windows.
|
49
network/bsflite/bsflite.SlackBuild
Normal file
49
network/bsflite/bsflite.SlackBuild
Normal file
|
@ -0,0 +1,49 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for bsflite
|
||||
# Written by Peter Drauden (pjdraud@ilstu.edu)
|
||||
|
||||
set -e
|
||||
|
||||
PRGNAM=bsflite
|
||||
VERSION=0.82
|
||||
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"
|
||||
fi
|
||||
|
||||
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 .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
# Compile the application and strip unneeded symbols
|
||||
CFLAGS=$SLKCFLAGS CXXFLAGS=$SLKCFLAGS make
|
||||
strip --strip-unneeded bsflite 2> /dev/null
|
||||
|
||||
mkdir -p $PKG/usr/{bin,man/man1}
|
||||
cp -a bsflite $PKG/usr/bin
|
||||
gzip -9c bsflite.1 > $PKG/usr/man/man1/bsflite.1.gz
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a COPYING ChangeLog 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.tgz
|
8
network/bsflite/bsflite.info
Normal file
8
network/bsflite/bsflite.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="bsflite"
|
||||
VERSION="0.82"
|
||||
HOMEPAGE="http://bsflite.sourceforge.net/"
|
||||
DOWNLOAD="http://downloads.sourceforge.net/bsflite/bsflite-0.82.tar.gz"
|
||||
MD5SUM="f04364100bd46ab8748cfd77229fd2d0"
|
||||
MAINTAINER="Peter Drauden"
|
||||
EMAIL="pjdraud@ilstu.edu"
|
||||
APPROVED="rworkman"
|
19
network/bsflite/slack-desc
Normal file
19
network/bsflite/slack-desc
Normal file
|
@ -0,0 +1,19 @@
|
|||
# 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------------------------------------------------------|
|
||||
bsflite: bsflite (0.82)
|
||||
bsflite:
|
||||
bsflite: BSFlite is a rather small and minimalist client for AOL's Instant
|
||||
bsflite: Messenger(TM) service. Instead of having a full screen console
|
||||
bsflite: interface, BSFlite employs a command line interface that allows your
|
||||
bsflite: fingers to do all of the work without needlessly sifting through
|
||||
bsflite: windows.
|
||||
bsflite:
|
||||
bsflite: Homepage: http://bsflite.sourceforge.net/
|
||||
bsflite:
|
||||
bsflite:
|
Loading…
Reference in a new issue