blob: 7fd5b1271b50a9f6ac9e9165215c6feb6d3a20b1 (
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
45
46
|
# Maintainer: taotieren <admin@taotieren.com>
pkgname=libpldm
pkgver=0.10.0
pkgrel=1
epoch=
pkgdesc="This is a library which deals with the encoding and decoding of PLDM messages."
arch=(aarch64
riscv64
x86_64)
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=('674d67261426ec0ff1538ff2535c9148fc3b505b93111a1d0c909c6bde016860')
#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
}
|