mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-30 13:02:27 +01:00
36 lines
940 B
Plaintext
36 lines
940 B
Plaintext
|
|
# Contributor: apangona <apo@apangona.de>
|
|
# Maintainer: apangona <apo@apangona.de>
|
|
pkgname=libaacs
|
|
pkgver=0.11.0
|
|
pkgrel=0
|
|
pkgdesc="libaacs is a research project to implement the Advanced Access Content System specification"
|
|
url="https://www.videolan.org/developers/libaacs.html"
|
|
arch="all"
|
|
license="LGPL-2.1-only"
|
|
makedepends="bison flex libgcrypt-dev"
|
|
subpackages="$pkgname-dev"
|
|
source="https://download.videolan.org/pub/videolan/libaacs/$pkgver/libaacs-$pkgver.tar.bz2"
|
|
options="!check" # no tests provided
|
|
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--localstatedir=/var \
|
|
--disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="
|
|
167edbb6f26599e41d6084908039bf902f69f57da1f64f1491734157d1568ad0b32c8ea3064e0706e383af8dc6007eef65170b2b47222bf3d363e395e0b60388 libaacs-0.11.0.tar.bz2
|
|
"
|