libraries/pwlib: Added to 12.0 repository
This commit is contained in:
parent
f43f8e3b43
commit
9d089fdab2
|
@ -0,0 +1,4 @@
|
|||
PWLib is a moderately large class library intended to assist in writing
|
||||
complete multi-platform applications. Classes for I/O portability,
|
||||
multi-threading portability, aids in producing UNIX daemons and NT services
|
||||
portably and all sorts of internet protocols are supported.
|
|
@ -0,0 +1,59 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for pwlib
|
||||
|
||||
# Written by Olivier Esser (olive001@tele2allin.be), based on
|
||||
# the template available at SlackBuilds.org (public domain).
|
||||
|
||||
# Exit on most errors
|
||||
set -e
|
||||
|
||||
PRGNAM=pwlib
|
||||
VERSION=1.10.10
|
||||
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 .
|
||||
|
||||
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
|
||||
)
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a ReadMe.txt History.txt ReadMe_QOS.txt $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 -p -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="pwlib"
|
||||
VERSION="1.10.10"
|
||||
HOMEPAGE="http://ekiga.org"
|
||||
DOWNLOAD="http://www.ekiga.org/admin/downloads/latest/sources/sources/pwlib-1.10.10.tar.gz"
|
||||
MD5SUM="abebf45332e70772ffa876d31975d4b9"
|
||||
MAINTAINER="Olivier Esser"
|
||||
EMAIL="olive001@tele2allin.be"
|
||||
APPROVED="rworkman"
|
|
@ -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------------------------------------------------------|
|
||||
pwlib: pwlib (Classes for I/O portability)
|
||||
pwlib:
|
||||
pwlib: PWLib is a moderately large class library intended to assist in writing
|
||||
pwlib: complete multi-platform applications. Classes for I/O portability,
|
||||
pwlib: multi-threading portability, aids in producing UNIX daemons and NT
|
||||
pwlib: services portably and all sorts of internet protocols are supported.
|
||||
pwlib:
|
||||
pwlib: Homepage: http://ekiga.org
|
||||
pwlib:
|
||||
pwlib:
|
||||
pwlib:
|
Loading…
Reference in New Issue