mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-17 02:26:34 +02:00
29 lines
654 B
Plaintext
29 lines
654 B
Plaintext
# Maintainer: Hugo Osvaldo Barrera <hugo@whynothugo.nl>
|
|
pkgname=hare-csv
|
|
pkgver=0.9.0
|
|
pkgrel=0
|
|
pkgdesc=" CSV reading and writing support for Hare "
|
|
url="https://sr.ht/~blainsmith/hare-csv"
|
|
arch="x86_64 aarch64 riscv64" # hare
|
|
license="GPL-3.0-only"
|
|
makedepends="hare"
|
|
source="
|
|
$pkgname-$pkgver.tar.gz::https://git.sr.ht/~blainsmith/hare-csv/archive/$pkgver.tar.gz
|
|
"
|
|
|
|
build() {
|
|
make -j1 PREFIX=/usr
|
|
}
|
|
|
|
check() {
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" PREFIX=/usr install
|
|
}
|
|
|
|
sha512sums="
|
|
200748b96fca830a19a0e2600ca159aa6b7ce329f4c897a00fd7975b557fc4d14f88b6ef77c1a617166ad9392faeca3022b272c3f9143295d44a5d76cff8a54f hare-csv-0.9.0.tar.gz
|
|
"
|