diff --git a/common/shlibs b/common/shlibs index 8451b640bb..85e8be804b 100644 --- a/common/shlibs +++ b/common/shlibs @@ -3979,3 +3979,4 @@ libptexenc.so.1 texlive-20200406_1 libdolphinvcs.so.5 dolphin-20.04.3_1 libcglm.so.0 cglm-0.7.6_1 libfcft.so.3 fcft-2.2.2_1 +libaml.so.0 aml-0.1.0_1 diff --git a/srcpkgs/aml-devel b/srcpkgs/aml-devel new file mode 120000 index 0000000000..511960e236 --- /dev/null +++ b/srcpkgs/aml-devel @@ -0,0 +1 @@ +aml \ No newline at end of file diff --git a/srcpkgs/aml/template b/srcpkgs/aml/template new file mode 100644 index 0000000000..5c1754fc6d --- /dev/null +++ b/srcpkgs/aml/template @@ -0,0 +1,30 @@ +# Template file for 'aml' +pkgname=aml +version=0.1.0 +revision=1 +build_style=meson +hostmakedepends="pkg-config" +short_desc="Another Main Loop" +maintainer="Zach Dykstra " +license="ISC" +homepage="https://github.com/any1/aml" +distfiles="https://github.com/any1/aml/archive/v${version}.tar.gz" +checksum=50341861e9bb4eaaf11731941c276ef22b78e0e3d9b1442f6cf683f1b8e08bff + +if [ "$XBPS_TARGET_LIBC" = "musl" ]; then + makedepends+=" musl-legacy-compat" +fi + +post_install() { + vlicense COPYING +} + +aml-devel_package() { + depends="${sourcepkg}>=${version}_${revision}" + short_desc+=" - development files" + pkg_install() { + vmove usr/include + vmove usr/lib/pkgconfig + vmove "usr/lib/*.so" + } +}