blob: a2195cf4dd2a616e1be5ca46065f468afccec77a (
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
34
35
36
37
38
39
40
41
42
43
44
|
# Maintainer: taotieren <admin@taotieren.com>
pkgname=libpldm
pkgver=0.13.0
pkgrel=1
epoch=
pkgdesc="This is a library which deals with the encoding and decoding of PLDM messages."
arch=($CARCH)
url="https://github.com/openbmc/libpldm"
license=('Apache-2.0')
groups=()
depends=(glibc)
makedepends=(
gtest
meson
ninja
abi-dumper
abi-compliance-checker)
checkdepends=()
optdepends=()
provides=(${pkgname})
conflicts=(${pkgname})
replaces=()
backup=()
options=()
install=
changelog=
source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/refs/tags/v${pkgver}.tar.gz")
noextract=()
sha256sums=('7f15135fc44d1018bdd6fcff8d4cea0b8f27878a90b19cac5baafae09f930972')
#validpgpkeys=()
build() {
arch-meson ${pkgname}-${pkgver} build -Dabi=deprecated,stable
ninja -C build
}
# check(){
# meson test -C ${srcdir}/build
# }
package() {
DESTDIR="${pkgdir}" ninja -C ${srcdir}/build install
}
|