* update libfdk-aac to 2.0.3-1

This commit is contained in:
Alexander Baldeck 2024-01-27 21:52:26 +01:00
parent 5609b980db
commit b63fc11a7f

View File

@ -4,32 +4,31 @@
# Contributor: DrZaius <lou[at]fakeoutdoorsman[dot]com>
pkgname=libfdk-aac
pkgver=2.0.2
pkgver=2.0.3
pkgrel=1
pkgdesc='Fraunhofer FDK AAC codec library'
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
url=https://sourceforge.net/projects/opencore-amr/
license=(custom)
depends=(glibc)
makedepends=(git)
provides=(libfdk-aac.so)
source=(git+https://github.com/mstorsjo/fdk-aac.git#tag=8003a054c81c45c10fe70a832f02c6985383608f)
sha256sums=(SKIP)
_tag=716f4394641d53f0d79c9ddac3fa93b03a49f278
source=(git+https://github.com/mstorsjo/fdk-aac.git#tag=${_tag})
b2sums=(SKIP)
pkgver() {
cd fdk-aac
git describe --tags | sed 's/^v//'
}
prepare() {
cd fdk-aac
./autogen.sh
}
build() {
cd fdk-aac
./configure \
--prefix=/usr \
--disable-static
@ -38,7 +37,6 @@ build() {
package () {
cd fdk-aac
make DESTDIR="${pkgdir}" install
install -Dm 644 NOTICE -t "${pkgdir}"/usr/share/licenses/libfdk-aac/
}