contrib/serd/Pkgfile

22 lines
549 B
Plaintext
Raw Normal View History

2019-08-21 12:02:52 +02:00
# Description: A lightweight C library for RDF syntax which supports reading and writing Turtle and NTriples.
# URL: http://drobilla.net/software/serd
# Maintainer: Tim Biermann, tbier at posteo dot de
2024-01-24 20:39:33 +01:00
# Depends on: meson ninja
2019-08-21 12:02:52 +02:00
name=serd
2024-01-24 20:39:33 +01:00
version=0.32.2
2019-08-21 12:02:52 +02:00
release=1
2022-07-23 17:31:01 +02:00
source=(http://download.drobilla.net/$name-$version.tar.xz)
2019-08-21 12:02:52 +02:00
build() {
2022-07-23 17:31:01 +02:00
meson setup $name-$version build \
--prefix=/usr \
--buildtype=plain \
--wrap-mode nodownload \
-D b_lto=true \
-D b_pie=true
meson compile -C build
DESTDIR=$PKG meson install -C build
2019-08-21 12:02:52 +02:00
}