initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

27
libmicrodns/PKGBUILD Normal file
View File

@@ -0,0 +1,27 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=libmicrodns
pkgver=0.1.2
pkgrel=1
pkgdesc='Minimal mDNS resolver library'
url='https://github.com/videolabs/libmicrodns'
arch=('i686' 'x86_64')
license=('LGPL-2.1')
depends=('glibc')
makedepends=('meson')
source=(https://github.com/videolabs/libmicrodns/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
sha512sums=('a2a40f785cfcab280c1d5e187eef5f63e642dccdf1ada2e9f7ed2b85aef26e5c1b1cefc7df6fa4f83b46e5da5eaf05e0f0b02b677ca4e5e73b7fd70d74878552')
build() {
cd ${pkgname}-${pkgver}
hyperbola-meson build
ninja -C build
}
package() {
cd ${pkgname}-${pkgver}
DESTDIR="${pkgdir}" meson install -C build
install -Dm644 COPYING -t ${pkgdir}/usr/share/licenses/${pkgname}
}
# vim: ts=2 sw=2 et: