19 lines
529 B
Plaintext
19 lines
529 B
Plaintext
# Description: Local/remote mirroring+incremental backup
|
|
# URL: https://github.com/rdiff-backup/rdiff-backup
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
|
# Depends on: python3-setuptools rdiff
|
|
|
|
name=rdiff-backup
|
|
version=2.0.3
|
|
release=1
|
|
source=(https://github.com/rdiff-backup/rdiff-backup/releases/download/v$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
/usr/bin/python3 setup.py build
|
|
/usr/bin/python3 setup.py install --prefix=/usr --root=$PKG
|
|
|
|
rm -r $PKG/usr/share/doc
|
|
}
|