diff options
author | Tim Biermann <tbier@posteo.de> | 2019-08-21 10:02:50 +0000 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2019-08-21 10:02:50 +0000 |
commit | 0dbc0dafe9440a38b71da8fdea628fef2daf9165 (patch) | |
tree | 65120c3ff0e69a85ba529d902465a2a5baa808e3 /libebur128 | |
parent | c71aee9809a00295853f3343e1209eca435e290b (diff) | |
download | contrib-0dbc0dafe9440a38b71da8fdea628fef2daf9165.tar.gz contrib-0dbc0dafe9440a38b71da8fdea628fef2daf9165.tar.xz |
libebur128: initial commit, version 1.2.4
Diffstat (limited to 'libebur128')
-rw-r--r-- | libebur128/.footprint | 9 | ||||
-rw-r--r-- | libebur128/.signature | 5 | ||||
-rw-r--r-- | libebur128/Pkgfile | 20 |
3 files changed, 34 insertions, 0 deletions
diff --git a/libebur128/.footprint b/libebur128/.footprint new file mode 100644 index 000000000..c41575fa6 --- /dev/null +++ b/libebur128/.footprint @@ -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 diff --git a/libebur128/.signature b/libebur128/.signature new file mode 100644 index 000000000..0f3e382f0 --- /dev/null +++ b/libebur128/.signature @@ -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 diff --git a/libebur128/Pkgfile b/libebur128/Pkgfile new file mode 100644 index 000000000..8d942f36b --- /dev/null +++ b/libebur128/Pkgfile @@ -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 +} |