summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d03ae179ef325c6a484157e1f8615c1f10abb8a9 (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=89
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=("git://github.com/jkalbhenn/scrypt")
url=https://github.com/jkalbhenn/scrypt
md5sums=(SKIP)

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

build() {
  cd scrypt
  ./exe/compile
}

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