From 04264c63388d5ef9bd064791bd8d51ac419cb212 Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Mon, 15 May 2017 19:48:57 +0200 Subject: [PATCH] Remove doc/PKGBUILD --- doc/PKGBUILD | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 doc/PKGBUILD diff --git a/doc/PKGBUILD b/doc/PKGBUILD deleted file mode 100644 index a9dc2c9ee..000000000 --- a/doc/PKGBUILD +++ /dev/null @@ -1,38 +0,0 @@ -# Maintainer: Florian Daniel -# Contributor: Eldar Tsraev -# Contributor: Andreas Guth -# Contributor: Alexander Neumann -options=(!strip) -pkgname=restic-git -pkgver=v0.5.0.r218.g089b04c8 -pkgrel=1 -pkgdesc="restic is a program that does backups right." -arch=('i686' 'x86_64') -url="https://github.com/restic/restic" -license=('BSD') -depends=('glibc') -makedepends=('git' 'go>=1.3') -provides=('restic') -conflicts=('restic') -source=("${pkgname}::git+https://github.com/restic/restic") -md5sums=('SKIP') - -importpath='github.com/restic/restic' - -pkgver() { - cd "$pkgname" - git describe --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g' -} - -build() { - cd "$pkgname" - go run build.go -} - -package() { - install -Dm755 "$pkgname/restic" "$pkgdir/usr/bin/restic" - install -Dm644 "$pkgname/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" - install -Dm644 "$pkgname/README.rst" "$pkgdir/usr/share/doc/$pkgname/README" -} - -# vim:set ts=2 sw=2 et: