summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 6d39806c37bfecfec7dca49a70edebef5b9ac4c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Maintainer: Vinícius dos Santos Oliveira <vini.ipsmaker@gmail.com>
pkgname=emilua-botan
pkgver=1.1.0
pkgrel=1
pkgdesc="Securely clears secrets from memory in Emilua"
arch=('i686' 'x86_64')
url="https://gitlab.com/emilua/botan"
license=('boost')
depends=('emilua' 'botan')
makedepends=('git' 'meson' 'boost' 'gawk' 'gperf' 'asciidoctor')
source=("${pkgname}::git+https://gitlab.com/emilua/botan.git#tag=v${pkgver}")
md5sums=('SKIP')

build() {
	arch-meson "${pkgname}" build
	meson compile -C build
}

package() {
	DESTDIR="$pkgdir/" meson install -C build
}