source: npl/overig/rdiff-backup/rdiff_backup.SlackBuild @ 8c2f7e4

gcc484perl-5.22
Last change on this file since 8c2f7e4 was c5c522c, checked in by Edwin Eefting <edwin@datux.nl>, 8 years ago

initial commit, transferred from cleaned syn3 svn tree

  • Property mode set to 100755
File size: 379 bytes
Line 
1#!/bin/bash
2#DEP:librsync
3#DEP:python
4
5NAME=rdiff_backup
6TAR=rdiff-backup
7VER=1.2.8
8CWD=`pwd`
9PKGTMP=/tmp/pkgtmp
10
11mkdir -p $PKGTMP &>/dev/null
12
13tar -xzf $TAR-$VER.tar.gz || exit 1
14
15cd $TAR-$VER || exit 1
16./setup.py install --root $PKGTMP || exit 1
17
18cd "$PKGTMP" || exit 1
19makepkg -l y -c n $CWD/$NAME.pkg > /dev/null &&
20echo $VER > $CWD/$NAME.version &&
21arch > $CWD/$NAME.arch
22
Note: See TracBrowser for help on using the repository browser.