mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
system/unison: Updated for version 2.40.63.
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
This commit is contained in:
parent
4f9a8266f9
commit
4e619a267f
3 changed files with 20 additions and 15 deletions
|
@ -3,15 +3,19 @@ replicas of a collection of files and directories to be stored on different
|
|||
hosts (or different disks on the same host), modified separately, and then
|
||||
brought up to date by propagating the changes in each replica to the other.
|
||||
|
||||
Unlike simple mirroring or backup utilities, Unison can deal with updates to
|
||||
both replicas of a distributed directory structure. Updates that do not
|
||||
Unlike simple mirroring or backup utilities, Unison can deal with updates
|
||||
to both replicas of a distributed directory structure. Updates that do not
|
||||
conflict are propagated automatically. Conflicting updates are detected and
|
||||
displayed.
|
||||
|
||||
Unison allows you to either build a text only binary or a binary that will
|
||||
use a graphical user interface. To build the gtk2 graphical inteface binary,
|
||||
which is the default option, do this:
|
||||
"FLAVOR=gtk2 ./unison.SlackBuild" or just "./unison.SlackBuild"
|
||||
To build a textonly binary, do this: "FLAVOR=text ./unison.SlackBuild"
|
||||
use a graphical user interface. To build the gtk2 graphical inteface
|
||||
binary, which is the default option, do this:
|
||||
|
||||
"FLAVOR=gtk2 ./unison.SlackBuild" or just "./unison.SlackBuild"
|
||||
|
||||
To build a textonly binary, do this:
|
||||
|
||||
"FLAVOR=text ./unison.SlackBuild"
|
||||
|
||||
ocaml and lablgtk are build requirements, but neither are runtime deps.
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
# Slackware build script for unison
|
||||
|
||||
# Copyright 2007-2009 Ferenc Deak <ferenc.deak@gmail.com>
|
||||
# Copyright 2007-2011 Ferenc Deak <ferenc.deak@gmail.com>
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
|
@ -23,16 +23,14 @@
|
|||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=unison
|
||||
VERSION=2.32.52
|
||||
VERSION=2.40.63
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
# Automatically determine the architecture we're building on:
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
# Unless $ARCH is already set, use uname -m for all other archs:
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
@ -81,6 +79,7 @@ cp $CWD/$PRGNAM.png $PKG/usr/share/pixmaps/$PRGNAM.png
|
|||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a COPYING NEWS README BUGS.txt $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/unison-$VERSION-manual.html > $PKG/usr/doc/$PRGNAM-$VERSION/unison-manual.html
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
|
|
|
@ -1,10 +1,12 @@
|
|||
PRGNAM="unison"
|
||||
VERSION="2.32.52"
|
||||
VERSION="2.40.63"
|
||||
HOMEPAGE="http://www.cis.upenn.edu/~bcpierce/unison/"
|
||||
DOWNLOAD="http://www.seas.upenn.edu/~bcpierce/unison/download/releases/unison-2.32.52/unison-2.32.52.tar.gz"
|
||||
MD5SUM="0701f095c1721776a0454b94607eda48"
|
||||
DOWNLOAD="http://www.seas.upenn.edu/~bcpierce/unison/download/releases/unison-2.40.63/unison-2.40.63.tar.gz \
|
||||
http://www.seas.upenn.edu/~bcpierce/unison/download/releases/unison-2.40.63/unison-2.40.63-manual.html"
|
||||
MD5SUM="3281207850cf6f0a17fe73f371893bd3 \
|
||||
41941d0ee465cbae5a802b189fe20138"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="fdeak"
|
||||
MAINTAINER="Ferenc Deak"
|
||||
EMAIL="ferenc.deak@gmail.com"
|
||||
APPROVED="rworkman"
|
||||
APPROVED="rworkman,Niels Horn"
|
||||
|
|
Loading…
Reference in a new issue