18 lines
466 B
Plaintext
18 lines
466 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.10.0
|
|
release=1
|
|
source=(https://download.videolan.org/pub/videolan/$name/$version/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./bootstrap
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|