# Description: A fancy 1.2 YAML and JSON parser/writer # URL: https://github.com/pantoniou/libfyaml # Maintainer: Tim Biermann, tbier at posteo dot de name=libfyaml version=0.9 release=1 source=(https://github.com/pantoniou/libfyaml/releases/download/v$version/libfyaml-$version.tar.gz) build() { #cmake -S $name-$version -B build -G Ninja \ # -D CMAKE_INSTALL_PREFIX=/usr \ # -D CMAKE_INSTALL_LIBDIR=lib \ # -D CMAKE_BUILD_TYPE=Release \ # -D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \ # -D CMAKE_C_FLAGS_RELEASE="$CFLAGS" \ # -Wno-dev #cmake --build build #DESTDIR=$PKG cmake --install build cd $name-$version ./bootstrap.sh ./configure --prefix=/usr \ --disable-static sed -i -e 's! -shared ! -Wl,--as-needed\0!g' libtool make make DESTDIR=$PKG install }