mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-03-06 14:12:23 +01:00
33 lines
867 B
Plaintext
33 lines
867 B
Plaintext
# Contributor: Carlo Landmeter <clandmeter@gmail.com>
|
|
# Maintainer:
|
|
pkgname=fdk-aac
|
|
pkgver=2.0.0
|
|
pkgrel=0
|
|
pkgdesc="Fraunhofer FDK AAC codec library"
|
|
url="https://sourceforge.net/projects/opencore-amr"
|
|
arch="all"
|
|
license="custom"
|
|
depends=""
|
|
makedepends=""
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
source="https://downloads.sourceforge.net/sourceforge/opencore-amr/$pkgname-$pkgver.tar.gz"
|
|
options="!check" # no upstream/available testsuite
|
|
builddir="$srcdir/$pkgname-$pkgver"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--prefix="/usr" \
|
|
--disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
install -Dm644 NOTICE \
|
|
"${pkgdir}"/usr/share/licenses/libfdk-aac/NOTICE
|
|
}
|
|
|
|
sha512sums="40b02a9e42e17015fa6531c7b7eb51098ab43224c11c1c85e981d950642ffc6884146367cb423062b1da11679020ee5c5779dce5f4dc62175c8bf471831ed918 fdk-aac-2.0.0.tar.gz"
|