* update libebur128 to 1.2.6-2

This commit is contained in:
Alexander Baldeck 2024-08-07 07:05:20 +02:00
parent 11c51ab0ce
commit f4f4ba8b0c
3 changed files with 28 additions and 8 deletions

14
libebur128/.SRCINFO Normal file
View File

@ -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
license = MIT
makedepends = cmake
makedepends = git
depends = glibc
source = git+https://github.com/jiixyj/libebur128#tag=v1.2.6
sha256sums = ee74f29f3f4d339f71de831af341b36d2cf24d0129e5bec0512b145d66da3daf
pkgname = libebur128

View File

@ -0,0 +1,5 @@
[libebur128]
source = 'github'
github = 'jiixyj/libebur128'
use_max_tag = true
prefix = 'v'

View File

@ -4,18 +4,19 @@
pkgname=libebur128
pkgver=1.2.6
pkgrel=1
pkgdesc="A library that implements the EBU R 128 standard for loudness normalisation."
pkgrel=2
pkgdesc='A library that implements the EBU R 128 standard for loudness normalisation'
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
url="https://github.com/jiixyj/libebur128"
url='https://github.com/jiixyj/libebur128'
license=(MIT)
depends=(glibc)
makedepends=(cmake)
source=($pkgname-$pkgver.tar.gz::"https://github.com/jiixyj/$pkgname/archive/v$pkgver.tar.gz")
sha256sums=('baa7fc293a3d4651e244d8022ad03ab797ca3c2ad8442c43199afe8059faa613')
makedepends=(cmake
git)
source=(git+https://github.com/jiixyj/libebur128#tag=v$pkgver)
sha256sums=('ee74f29f3f4d339f71de831af341b36d2cf24d0129e5bec0512b145d66da3daf')
build() {
cmake -B build -S $pkgname-$pkgver \
cmake -B build -S $pkgname \
-DCMAKE_INSTALL_PREFIX=/usr \
-DBUILD_STATIC_LIBS=OFF
cmake --build build
@ -24,5 +25,5 @@ build() {
package() {
DESTDIR="$pkgdir" cmake --install build
install -Dm644 $pkgname-$pkgver/COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
install -Dm644 $pkgname/COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
}