summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: fd78af2b79008ff2a5cd9a019a67dba218234506 (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
pkgname=scrypt-kdf-git
pkgrel=1
pkgver=79
pkgdesc='library and command-line utility for the scrypt key derivation function'
arch=(i686 x86_64)
license=(bsd gpl3+)
makedepends=(git gcc)
provides=(scrypt-kdf)
depends=()
conflicts=(libscrypt)
source=("$pkgname::git://github.com/jkalbhenn/scrypt")
url=https://github.com/jkalbhenn/scrypt
md5sums=(SKIP)

pkgver() {
  cd $pkgname
  git rev-list --count HEAD
}

build() {
  cd $pkgname
  ./exe/compile
}

package() {
  cd $pkgname
  ./exe/install "$pkgdir"
}