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

26
utf8cpp/PKGBUILD Normal file
View File

@@ -0,0 +1,26 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=utf8cpp
pkgver=3.2.3
pkgrel=1
pkgdesc="UTF-8 with C++ in a Portable Way"
arch=('any')
url='https://github.com/nemtrif/utfcpp'
license=('Boost-1.0')
makedepends=('cmake')
source=("https://github.com/nemtrif/utfcpp/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz")
sha512sums=('760977df613abfb34fb7864cbbe90e8f2cf1f42b8502427a5e9c2a756ce87655120b7490ebdaa6c926a2cb56caef9ead0e0e10fb7cb732cf99a5b43c0cca411b')
build() {
cmake -B build -S ${pkgname/8}-${pkgver} \
-DCMAKE_BUILD_TYPE=None \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DUTF8_TESTS=OFF
make -C build
}
package() {
make -C build DESTDIR="${pkgdir}" install
install -Dm644 ${pkgname/8}-${pkgver}/LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}/
}