summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c958165288b1bf017f2f61a514ccd77db1673324 (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
31
32
33
# Maintainer: Anton Semjonov < a**** \ät semjonov.de >

pkgname="aenker"
pkgdesc="Authenticated encryption on the commandline using a chunked construction and elliptic curve keys."

pkgver=0.5.2
pkgrel=1

arch=('any')
url="https://github.com/ansemjo/$pkgname"
license=('MIT')

depends=()
makedepends=('go')

provides=($pkgname)
conflicts=($pkgname)

source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
sha256sums=('55ae760af8f2cc4cc3e780e7db692e6957ff341f0076919cf4dae3170664512c')

build() {
  cd "$pkgname-$pkgver"
  make "$pkgname"
}

package() {
  cd "$pkgname-$pkgver"
  make DESTDIR="$pkgdir" install
}

# -------------------------------