opt/taglib/Pkgfile

21 lines
546 B
Plaintext
Raw Normal View History

2011-12-12 23:34:46 +01:00
# Description: Library to read and edit the meta-data of popular audio formats.
2016-05-11 15:36:42 +02:00
# URL: http://taglib.github.io/
2014-11-10 13:25:50 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
2023-07-04 12:18:50 +02:00
# Depends on:
2016-05-11 15:36:42 +02:00
# Optional: boost
2011-12-12 23:34:46 +01:00
name=taglib
2023-07-04 12:18:50 +02:00
version=1.13.1
2011-12-12 23:34:46 +01:00
release=1
2016-05-11 15:36:42 +02:00
source=(http://taglib.github.io/releases/$name-$version.tar.gz)
2011-12-12 23:34:46 +01:00
build() {
2022-10-29 20:40:05 +02:00
cmake -S $name-$version -B build -G Ninja $PGKMK_TAGLIB \
2011-12-12 23:34:46 +01:00
-DCMAKE_INSTALL_PREFIX=/usr \
2022-10-30 14:06:23 +01:00
-DCMAKE_INSTALL_LIBDIR=lib \
2023-07-04 12:18:50 +02:00
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_SHARED_LIBS=ON
2021-02-18 08:40:35 +01:00
cmake --build build
DESTDIR=$PKG cmake --install build
2011-12-12 23:34:46 +01:00
}