blob: 95ad1962dd1a74308692572052a40cd926916fb9 (
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-zeroized-bytespan
pkgver=1.0.0
pkgrel=1
pkgdesc="Securely clears secrets from memory in Emilua"
arch=('i686' 'x86_64')
url="https://gitlab.com/emilua/zeroized-bytespan"
license=('boost')
depends=('emilua')
makedepends=('git' 'meson' 'boost' 'gawk' 'gperf' 'asciidoctor')
source=("${pkgname}::git+https://gitlab.com/emilua/zeroized-bytespan.git#tag=v${pkgver}")
md5sums=('SKIP')
build() {
arch-meson "${pkgname}" build
meson compile -C build
}
package() {
DESTDIR="$pkgdir/" meson install -C build
}
|