-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPKGBUILD
More file actions
34 lines (29 loc) · 753 Bytes
/
PKGBUILD
File metadata and controls
34 lines (29 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Maintainer: Robert Schiele <rschiele@gmail.com>
pkgname=git-incrypt-git
pkgver=0.9.0.r5.g3d6473c
pkgrel=1
pkgdesc="A git remote helper to encrypt git repositories incrementally"
arch=('any')
url="https://github.com/schiele/git-incrypt/"
license=('GPL2')
depends=('git' 'python-pygit2' 'gnupg')
makedepends=('asciidoc' 'xmlto' 'python-pylint' 'python-pycodestyle' 'man')
source=("git+https://github.com/schiele/git-incrypt.git")
sha256sums=('SKIP')
pkgver() {
cd git-incrypt
git describe --long --abbrev=7 | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd git-incrypt
make clean
make
}
check() {
cd git-incrypt
make test
}
package() {
cd git-incrypt
make PKGNAME:="$pkgname" DESTDIR:="$pkgdir" install
}