forked from ports/contrib
18 lines
470 B
Plaintext
18 lines
470 B
Plaintext
# Description: a research project to implement the Advanced Access Content System specification
|
|
# URL: https://www.videolan.org/developers/libaacs.html
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: libgcrypt
|
|
|
|
name=libaacs
|
|
version=0.11.1
|
|
release=1
|
|
source=(https://code.videolan.org/videolan/libaacs/-/archive/$version/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./bootstrap
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|