21 lines
518 B
Plaintext
21 lines
518 B
Plaintext
# Description: A lightweight C99 portability and data structure library
|
|
# URL: https://gitlab.com/drobilla/zix
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on:
|
|
|
|
name=zix
|
|
version=0.4.2
|
|
release=1
|
|
source=(https://gitlab.com/drobilla/zix/-/archive/v$version/zix-v$version.tar.bz2)
|
|
|
|
build() {
|
|
meson setup $name-v$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
|
|
}
|