New package: ada-2.9.0

This commit is contained in:
John 2024-08-02 22:14:14 +02:00 committed by John Zimmermann
parent be1305b413
commit 3d0d672a53
3 changed files with 31 additions and 0 deletions

View File

@ -459,6 +459,7 @@ libparted.so.2 libparted-3.1_1
libparted-fs-resize.so.0 libparted-3.1_1
libntfs-3g.so.89 ntfs-3g-2021.8.22_1
libruby.so.3.3 ruby-3.3.2_1
libada.so.2 ada-2.9.0_1
librw.so.0 rankwidth-0.9_1
libKSysGuardFormatter.so.2 libksysguard-6.0.0_1
libKSysGuardSensorFaces.so.2 libksysguard-6.0.0_1

1
srcpkgs/ada-devel Symbolic link
View File

@ -0,0 +1 @@
ada

29
srcpkgs/ada/template Normal file
View File

@ -0,0 +1,29 @@
# Template file for 'ada'
pkgname=ada
version=2.9.0
revision=1
build_style=cmake
# They all pull in CPM - CMake's missing package manager
configure_args="-DADA_TESTING=OFF -DADA_BENCHMARKS=OFF -DADA_TOOLS=OFF
-DBUILD_SHARED_LIBS=ON"
short_desc="WHATWG-compliant and fast URL parser written"
maintainer="John <me@johnnynator.dev>"
license="MIT OR Apache-2.0"
homepage="https://www.ada-url.com/"
distfiles="https://github.com/ada-url/ada/archive/refs/tags/v${version}.tar.gz"
checksum=8b992f0ce9134cb4eafb74b164d2ce2cb3af1900902162713b0e0c5ab0b6acd8
post_install() {
vlicense LICENSE-APACHE
vlicense LICENSE-MIT
}
ada-devel_package() {
depends="${sourcepkg}>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/cmake
vmove "usr/lib/*.so"
}
}