blob: ba9067b40c94c97825d968e396ecceb32bc14bf9 (
plain)
1 # Description: a research project to implement the Advanced Access Content System specification
2 # URL: https://www.videolan.org/developers/libaacs.html
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: libgcrypt
5
6 name=libaacs
7 version=0.11.0
8 release=1
9 source=(https://code.videolan.org/videolan/libaacs/-/archive/$version/$name-$version.tar.bz2)
10
11 build() {
12 cd $name-$version
13 ./bootstrap
14 ./configure --prefix=/usr
15 make
16 make DESTDIR=$PKG install
17 }
|