aml: initial commit, version 0.3.0

This commit is contained in:
Tim Biermann 2023-10-07 11:42:55 +02:00
parent 113096080d
commit 67b0fe1903
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 33 additions and 0 deletions

9
aml/.footprint Normal file
View File

@ -0,0 +1,9 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/aml.h
drwxr-xr-x root/root usr/lib/
lrwxrwxrwx root/root usr/lib/libaml.so -> libaml.so.0
lrwxrwxrwx root/root usr/lib/libaml.so.0 -> libaml.so.0.0.0
-rwxr-xr-x root/root usr/lib/libaml.so.0.0.0
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/aml.pc

5
aml/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF38lSbW/VQNFbIcTNsmkxqKffJUVNFSoCa8uMsghyVlbgkescVIkZmRuLIOwPkzXX81mRXaQzIBdHoLL69HcAsgg=
SHA256 (Pkgfile) = 2f2645ae8c7b51a35aa78ca89eee2032d9d971b500514e21b85eaf70108c1892
SHA256 (.footprint) = b1ccb10a6db7f4799e88145b8e41c659b0aecfd416190507c1729680d4af1587
SHA256 (aml-0.3.0.tar.gz) = cba1ca1689d4031faf37bb7a184559106b6d2f462ae8890a9fa16e3022ca1eb0

19
aml/Pkgfile Normal file
View File

@ -0,0 +1,19 @@
# Description: Another Main Loop
# URL: https://github.com/any1/aml
# Maintainer: Tim Biermann, tbier at posteo dot de
name=aml
version=0.3.0
release=1
source=(https://github.com/any1/aml/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
}