libebur128: initial commit, version 1.2.4

This commit is contained in:
Tim Biermann 2019-08-21 10:02:50 +00:00
parent c71aee9809
commit 0dbc0dafe9
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 34 additions and 0 deletions

9
libebur128/.footprint Normal file
View File

@ -0,0 +1,9 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/ebur128.h
drwxr-xr-x root/root usr/lib/
lrwxrwxrwx root/root usr/lib/libebur128.so -> libebur128.so.1
lrwxrwxrwx root/root usr/lib/libebur128.so.1 -> libebur128.so.1.2.4
-rwxr-xr-x root/root usr/lib/libebur128.so.1.2.4
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/libebur128.pc

5
libebur128/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF33+lIkvIcJ1ZLAu+RnwUiPyKv0w1Fe/D/0F5Ybj4SJ+uwgXBTBPifa0qieVxL0r3QdWNeoeaHdC+vBEM9HXYrAo=
SHA256 (Pkgfile) = f957c4c71a33f91a47ae9596cc84dc205ca0446f2c1ec03bcd6a3867eb6f2eb9
SHA256 (.footprint) = c92f41f735df172facbbdbec192ddd40ce457a60866d33025422ce08a79e8fdc
SHA256 (libebur128-1.2.4.tar.gz) = 2ee41a3a5ae3891601ae975d5ec2642b997d276ef647cf5c5b363b6127f7add8

20
libebur128/Pkgfile Normal file
View File

@ -0,0 +1,20 @@
# 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
}