libaacs: initial commit, version 0.10.0

This commit is contained in:
Tim Biermann 2020-06-14 21:17:50 +00:00
parent 4f22e7701d
commit d25cfe6674
3 changed files with 38 additions and 0 deletions

16
libaacs/.footprint Normal file
View File

@ -0,0 +1,16 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/aacs_info
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/libaacs/
-rw-r--r-- root/root usr/include/libaacs/aacs-version.h
-rw-r--r-- root/root usr/include/libaacs/aacs.h
-rw-r--r-- root/root usr/include/libaacs/filesystem.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libaacs.a
-rwxr-xr-x root/root usr/lib/libaacs.la
lrwxrwxrwx root/root usr/lib/libaacs.so -> libaacs.so.0.7.0
lrwxrwxrwx root/root usr/lib/libaacs.so.0 -> libaacs.so.0.7.0
-rwxr-xr-x root/root usr/lib/libaacs.so.0.7.0
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/libaacs.pc

5
libaacs/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF38Yq+9NeSjoh8rJUd7cHmyT43SMSk1kLSGkdxY2ghzFCFVrnfAzQWGTwCYAGLvhuufOylqDJGwDsyib+VDX89Qk=
SHA256 (Pkgfile) = 8242e51cd4fe8d773b497d915a1e95edc1d7edf4da1669c8f15864d31499930a
SHA256 (.footprint) = f524fe314be36dd7e83c7d7c5019f9de229a86404f9790948c42909f5cd789e6
SHA256 (libaacs-0.10.0.tar.bz2) = 93f6b19ef71e6f73e77bd7535946c09c45330e9b42e832a63a1d6b042f6b12fe

17
libaacs/Pkgfile Normal file
View File

@ -0,0 +1,17 @@
# 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
}