summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 039f3048d5584a7dec9c5431a4d4d3e9e7a4e000 (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
_gitname=clawspeek
pkgname=${_gitname}-git
pkgver=8.881c15a
pkgver() { cd $_gitname && echo $(git rev-list --count master).$(git rev-parse --short master); }
pkgrel=1
pkgdesc="Decode obfuscated claws-mail passwords (see ~/.clawsmail/accountrc)"
arch=('i686' 'x86_64')
url="https://github.com/mones/clawspeek"
license=('GPL3')
makedepends=('git' 'make' 'gcc')
provides=('clawspeek')
conflicts=('clawspeek')
source=('git://github.com/mones/clawspeek.git')
md5sums=(SKIP)

build() {
  cd $_gitname
  make
}

package() {
  cd $_gitname
  make PREFIX=$pkgdir/usr install
}