From c56c619470547a89beffada9466063d650077c1d Mon Sep 17 00:00:00 2001 From: Lyle Sigurdson Date: Tue, 11 May 2010 14:56:21 +0200 Subject: libraries/librsync: Initial import --- libraries/librsync/README | 12 ++++++ libraries/librsync/librsync.SlackBuild | 67 ++++++++++++++++++++++++++++++++++ libraries/librsync/librsync.info | 8 ++++ libraries/librsync/slack-desc | 12 ++++++ 4 files changed, 99 insertions(+) create mode 100644 libraries/librsync/README create mode 100644 libraries/librsync/librsync.SlackBuild create mode 100644 libraries/librsync/librsync.info create mode 100644 libraries/librsync/slack-desc diff --git a/libraries/librsync/README b/libraries/librsync/README new file mode 100644 index 0000000000..dd5a163210 --- /dev/null +++ b/libraries/librsync/README @@ -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. diff --git a/libraries/librsync/librsync.SlackBuild b/libraries/librsync/librsync.SlackBuild new file mode 100644 index 0000000000..6448ce0915 --- /dev/null +++ b/libraries/librsync/librsync.SlackBuild @@ -0,0 +1,67 @@ +#!/bin/sh + +# Slackware build script for librsync. +# Written by Lyle Sigurdson . +# +# 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 diff --git a/libraries/librsync/librsync.info b/libraries/librsync/librsync.info new file mode 100644 index 0000000000..bec511e4c5 --- /dev/null +++ b/libraries/librsync/librsync.info @@ -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" diff --git a/libraries/librsync/slack-desc b/libraries/librsync/slack-desc new file mode 100644 index 0000000000..d1909c86f4 --- /dev/null +++ b/libraries/librsync/slack-desc @@ -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. -- cgit v1.2.3-80-g2a13