1
0
forked from ports/contrib

libopenaptx: initial commit, version 0.2.0

This commit is contained in:
Tim Biermann 2021-01-07 23:30:59 +00:00
parent 42be9fa7a0
commit bbc06d8d3d
Signed by untrusted user: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 31 additions and 0 deletions

13
libopenaptx/.footprint Normal file
View File

@ -0,0 +1,13 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/openaptxdec
-rwxr-xr-x root/root usr/bin/openaptxenc
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/openaptx.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libopenaptx.a
lrwxrwxrwx root/root usr/lib/libopenaptx.so -> libopenaptx.so.0
lrwxrwxrwx root/root usr/lib/libopenaptx.so.0 -> libopenaptx.so.0.2.0
-rwxr-xr-x root/root usr/lib/libopenaptx.so.0.2.0
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/libopenaptx.pc

5
libopenaptx/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF36PuSRRyr61ELceAyi8pquIUSWEMpftZjDCHompaNjYDNo8bI4eZ39dLvCnkIFslNThP2iycq2sKM0y/CJqBIgU=
SHA256 (Pkgfile) = b51ce41f4f794b852084802f35d11fd4a5c1a87b08ece2ef987127478745e531
SHA256 (.footprint) = 44c12d6e1ee9064c3bfd3120f685a754aa3cb5333830a8173d4dfe458556495b
SHA256 (libopenaptx-0.2.0.tar.gz) = 51a13a34bb188a87ab1deb64a090ab42a4755d7b02c2bdaf3b8136f749b71b84

13
libopenaptx/Pkgfile Normal file
View File

@ -0,0 +1,13 @@
# Description: Open Source aptX codec library
# URL: https://github.com/pali/libopenaptx
# Maintainer: Tim Biermann, tbier at posteo dot de
name=libopenaptx
version=0.2.0
release=1
source=(https://github.com/pali/libopenaptx/releases/download/$version/libopenaptx-$version.tar.gz)
build() {
cd $name-$version
CC=cc make DESTDIR=$PKG PREFIX=/usr install
}