git » libebur128.git » commit 2d89526

libebur128 1.2.6

author Urja (ARMLFS builder)
2025-12-23 14:42:47 UTC
committer Urja (ARMLFS builder)
2025-12-23 14:42:47 UTC
parent 54d2281a4e9c0408c3cc78826487380a1c203ef0

libebur128 1.2.6

.SRCINFO +14 -0
PKGBUILD +4 -2

diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 0000000..076a001
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,14 @@
+pkgbase = libebur128
+	pkgdesc = A library that implements the EBU R 128 standard for loudness normalisation.
+	pkgver = 1.2.6
+	pkgrel = 2
+	url = https://github.com/jiixyj/libebur128
+	arch = x86_64
+	arch = armv7h
+	license = MIT
+	makedepends = cmake
+	depends = glibc
+	source = libebur128-1.2.6.tar.gz::https://github.com/jiixyj/libebur128/archive/v1.2.6.tar.gz
+	sha256sums = baa7fc293a3d4651e244d8022ad03ab797ca3c2ad8442c43199afe8059faa613
+
+pkgname = libebur128
diff --git a/PKGBUILD b/PKGBUILD
index 08b61ac..da88198 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
 
 pkgname=libebur128
 pkgver=1.2.6
-pkgrel=1
+pkgrel=2
 pkgdesc="A library that implements the EBU R 128 standard for loudness normalisation."
 arch=(x86_64 'armv7h')
 url="https://github.com/jiixyj/libebur128"
@@ -16,7 +16,9 @@ sha256sums=('baa7fc293a3d4651e244d8022ad03ab797ca3c2ad8442c43199afe8059faa613')
 build() {
   cmake -B build -S $pkgname-$pkgver \
     -DCMAKE_INSTALL_PREFIX=/usr \
-    -DBUILD_STATIC_LIBS=OFF
+    -DBUILD_STATIC_LIBS=OFF \
+    -DCMAKE_POLICY_VERSION_MINIMUM=3.5  
+
   cmake --build build
 }