blob: d77ad0a2d1e585f39b759375cf7202e1e9d1bd81 (
plain)
1 # Description: A lightweight C library for RDF syntax which supports reading and writing Turtle and NTriples.
2 # URL: http://drobilla.net/software/serd
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: meson ninja python3
5
6 name=serd
7 version=0.30.16
8 release=1
9 source=(http://download.drobilla.net/$name-$version.tar.xz)
10
11 build() {
12 meson setup $name-$version build \
13 --prefix=/usr \
14 --buildtype=plain \
15 --wrap-mode nodownload \
16 -D b_lto=true \
17 -D b_pie=true
18
19 meson compile -C build
20 DESTDIR=$PKG meson install -C build
21 }
|