summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d02cfe1cc87172d425a694e08dd1404720ffc0a4 (plain)
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
# Maintainer: Simon Gomizelj <simongmzlj@gmail.com>

pkgname=gpg-tools-git
pkgver=1
pkgrel=1
pkgdesc="Wrapper for gpg-agent integration"
arch=('i686' 'x86_64')
url="http://github.com/vodik/gpg-tools"
license=('GPL')
depends=('gnupg')
makedepends=('git' 'ragel')
conflicts=('gpg-tools')
provides=('gpg-tools')
source=('git+git://github.com/vodik/gpg-tools.git')
sha1sums=('SKIP')

pkgver() {
  cd "gpg-tools"
  git describe | sed 's/^v//;s/-/./g'
}

build() {
  make -C "gpg-tools"
}

package() {
  make -C "gpg-tools" DESTDIR="$pkgdir" install
}

# vim: ft=sh syn=sh et