From 67b0fe1903213566bac37df476db6d3195f1f88c Mon Sep 17 00:00:00 2001 From: Tim Biermann Date: Sat, 7 Oct 2023 11:42:55 +0200 Subject: [PATCH] aml: initial commit, version 0.3.0 --- aml/.footprint | 9 +++++++++ aml/.signature | 5 +++++ aml/Pkgfile | 19 +++++++++++++++++++ 3 files changed, 33 insertions(+) create mode 100644 aml/.footprint create mode 100644 aml/.signature create mode 100644 aml/Pkgfile diff --git a/aml/.footprint b/aml/.footprint new file mode 100644 index 000000000..38f0ceb5a --- /dev/null +++ b/aml/.footprint @@ -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 diff --git a/aml/.signature b/aml/.signature new file mode 100644 index 000000000..9318e88e0 --- /dev/null +++ b/aml/.signature @@ -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 diff --git a/aml/Pkgfile b/aml/Pkgfile new file mode 100644 index 000000000..cfac8dff4 --- /dev/null +++ b/aml/Pkgfile @@ -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 +}