mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 19:57:14 +08:00
28 lines
603 B
Bash
28 lines
603 B
Bash
pkgname=libfdk-aac
|
|
pkgver=0.1.4
|
|
pkgrel=2
|
|
pkgdesc='Fraunhofer FDK AAC codec library'
|
|
arch=('x86_64')
|
|
url='http://sourceforge.net/projects/opencore-amr/'
|
|
license=('custom')
|
|
depends=('glibc')
|
|
source=("http://downloads.sourceforge.net/opencore-amr/fdk-aac-${pkgver}.tar.gz")
|
|
sha256sums=('5910fe788677ca13532e3f47b7afaa01d72334d46a2d5e1d1f080f1173ff15ab')
|
|
|
|
build() {
|
|
cd fdk-aac-${pkgver}
|
|
|
|
./configure \
|
|
--prefix='/usr' \
|
|
--disable-static
|
|
make
|
|
}
|
|
|
|
package () {
|
|
cd fdk-aac-${pkgver}
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
install -Dm644 NOTICE "${pkgdir}"/usr/share/licenses/libfdk-aac/NOTICE
|
|
}
|