27 lines
704 B
Plaintext
27 lines
704 B
Plaintext
# Description: Library to read and edit the meta-data of popular audio formats
|
|
# URL: https://taglib.github.io/
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: utfcpp
|
|
# Optional: boost
|
|
|
|
name=taglib
|
|
version=2.0.1
|
|
release=1
|
|
source=(https://taglib.github.io/releases/$name-$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" \
|
|
-D BUILD_SHARED_LIBS=ON \
|
|
-D BUILD_TESTING=OFF \
|
|
-D WITH_ZLIB=ON \
|
|
-Wno-dev
|
|
|
|
cmake --build build
|
|
DESTDIR=$PKG cmake --install build
|
|
}
|