libraries/librsync: Initial import

This commit is contained in:
Lyle Sigurdson 2010-05-11 14:56:21 +02:00 committed by Eric Hameleers
parent c5a75a28fc
commit c56c619470
4 changed files with 99 additions and 0 deletions

12
libraries/librsync/README Normal file
View file

@ -0,0 +1,12 @@
librsync (rsync synchronization algorithm library.)
librsync is a free software library that implements the rsync remote-delta
algorithm.
The rsync remote-delta algorithm is a method of efficiently transmitting a
structure (such as a file) across a communications link when the receiving
computer already has a different version of the same structure.
Slackbuild written by Lyle Sigurdson.
No dependencies outside of the official Slackware packages are required.

View file

@ -0,0 +1,67 @@
#!/bin/sh
# Slackware build script for librsync.
# Written by Lyle Sigurdson <lyle_s@myrealbox.com>.
#
# Free for any use; no warranty.
# Modified by the SlackBuilds.org project
set -eu
# Set umask to what source package expects. Permissions in the final
# package won't be correct otherwise (unless by coincedence your umask
# is already 0022.)
umask 0022
PRGNAM=librsync
VERSION=0.9.7
ARCH=${ARCH:-i486}
BUILD=${BUILD:-2}
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 -xzvf $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 \
--enable-shared \
--enable-static \
--disable-dependency-tracking
make
make install-strip DESTDIR=$PKG
( 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
)
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a AUTHORS COPYING ChangeLog NEWS README THANKS 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.tgz

View file

@ -0,0 +1,8 @@
PRGNAM="librsync"
VERSION="0.9.7"
HOMEPAGE="http://librsync.sourceforge.net/"
DOWNLOAD="http://dl.sourceforge.net/librsync/librsync-0.9.7.tar.gz"
MD5SUM="24cdb6b78f45e0e83766903fd4f6bc84"
MAINTAINER="Lyle Sigurdson"
EMAIL="lyle_s@myrealbox.com "
APPROVED="alien,robw810"

View file

@ -0,0 +1,12 @@
|-----handy-ruler------------------------------------------------------|
librsync: librsync (rsync synchronization algorithm library.)
librsync:
librsync: librsync is a free software library that implements the rsync
librsync: remote-delta algorithm.
librsync:
librsync: The rsync remote-delta algorithm is a method of efficiently
librsync: transmitting a structure (such as a file) across a communications link
librsync: when the receiving computer already has a different version of the
librsync: same structure.
librsync:
librsync: Slackbuild written by Lyle Sigurdson.