forked from ports/contrib
21 lines
563 B
Plaintext
21 lines
563 B
Plaintext
|
# Description: A library that implements the EBU R 128 standard for loudness normalisation.
|
||
|
# URL: https://github.com/jiixyj/libebur128
|
||
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
||
|
# Depends on: cmake
|
||
|
|
||
|
name=libebur128
|
||
|
version=1.2.4
|
||
|
release=1
|
||
|
source=(https://github.com/jiixyj/libebur128/archive/v$version/$name-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
mkdir build && cd build
|
||
|
cmake .. -DCMAKE_BUILD_TYPE=Release \
|
||
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
||
|
-DCMAKE_INSTALL_LIBDIR=lib \
|
||
|
-DBUILD_STATIC_LIBS=OFF
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
}
|