Date: Saturday, April 8, 2023 @ 03:34:23
Author: felixonmars
Revision: 1441634
archrelease: copy trunk to community-staging-x86_64
Added:
bup/repos/community-staging-x86_64/
bup/repos/community-staging-x86_64/PKGBUILD
(from rev 1441631, bup/trunk/PKGBUILD)
----------+
PKGBUILD | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
Copied: bup/repos/community-staging-x86_64/PKGBUILD (from rev 1441631,
bup/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2023-04-08 03:34:23 UTC (rev 1441634)
@@ -0,0 +1,34 @@
+# Maintainer: Antonio Rojas <[email protected]>
+# Contributor: João Figueiredo <[email protected]> (11/07/2020)
+# Contributor: freggel.doe (Fixed i18n problem with make test, 13/07/2020)
+# Contributor: Christian Rebischke <[email protected]>
+# Contributor: Bartłomiej Piotrowski <[email protected]>
+# Contributor: Jakob Matthes <[email protected]>
+# Contributor: Bram Schoenmakers <[email protected]>
+# Contributor: henning mueller <[email protected]>
+# Contributor: rakoo (AUR)
+# Contributor: SanskritFritz (gmail)
+
+pkgname=bup
+pkgver=0.33
+pkgrel=2
+pkgdesc='Efficient backup system based on the git packfile format'
+arch=(x86_64)
+url='https://bup.github.io/'
+license=(GPL)
+depends=(python-fuse par2cmdline python-pyxattr git)
+optdepends=('python-tornado: for bup web')
+makedepends=(pandoc)
+source=(https://github.com/bup/bup/archive/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('2c21b25ab0ab845e1490cf20781bdb46e93b9c06f0c6df4ace760afc07a63fe9')
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure
+ make
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" PREFIX=/usr install
+}