liblc3: initial commit, version 1.1.0

This commit is contained in:
Tim Biermann 2024-03-28 19:56:15 +01:00
parent 98364f43dd
commit 9403dbbe37
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 35 additions and 0 deletions

10
liblc3/.footprint Normal file
View File

@ -0,0 +1,10 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/lc3.h
-rw-r--r-- root/root usr/include/lc3_cpp.h
-rw-r--r-- root/root usr/include/lc3_private.h
drwxr-xr-x root/root usr/lib/
lrwxrwxrwx root/root usr/lib/liblc3.so -> liblc3.so.1
-rwxr-xr-x root/root usr/lib/liblc3.so.1
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/lc3.pc

5
liblc3/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF35aoxNBLcJLZJ32nSZPifUksIYTz7fd65O4R3TtHNgFeA7cp0QDB17SJ+tvRDp1drburE1bq2tf3AfBueXpNFww=
SHA256 (Pkgfile) = 6c6bbeb2198d905288a9ebd28b0491a82e117cca32490b427991b0f868409b1c
SHA256 (.footprint) = 5e409d015424634887ac5a79afda9f44efadd470a36b21a224239d596aa18fb5
SHA256 (liblc3-1.1.0.tar.gz) = 958725e277685f9506d30ea341c38a03b245c3b33852cd074da6c8857525e808

20
liblc3/Pkgfile Normal file
View File

@ -0,0 +1,20 @@
# Description: Low Complexity Communication Codec library and tools
# URL: https://github.com/google/liblc3
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on:
name=liblc3
version=1.1.0
release=1
source=(https://github.com/google/liblc3/archive/v$version/$name-$version.tar.gz)
build() {
meson setup $name-$version build \
--prefix=/usr \
--buildtype=plain \
--wrap-mode nodownload \
-D b_lto=true \
-D b_pie=true
meson compile -C build
DESTDIR=$PKG meson install -C build
}