stdcsv
MEDIUM
maintainer jkercher
0 votes
scanned 2026-08-30 19:44:01.063593
Why flagged
This package was orphaned and re-adopted within the last 30 days — a window where ownership transfers can introduce malicious changes.
Triggered rules
Medium
Recently orphaned & re-adopted
orphaned_readopted
This package was orphaned and re-adopted within the last 30 days — a window where ownership transfers can introduce malicious changes.
PKGBUILD
1
# Maintainer: Jason Kercher <jkercher43 at gmail>
2
pkgname=stdcsv
3
pkgver=1.0.1
4
pkgrel=1
5
pkgdesc="A tool/library for working with delimited files."
6
arch=(x86_64) # It is only tested on x86_64
7
url="https://github.com/jasonKercher/libcsv"
8
license=(MIT)
9
checkdepends=(check)
10
provides=(libcsv.so)
11
source=("$pkgname-$pkgver::$url/archive/refs/tags/$pkgver.tar.gz")
12
md5sums=(638cae31d2257a7cf6516c715da003e8)
13
14
build() {
15
cd "libcsv-$pkgver"
16
./configure --prefix=/usr
17
make
18
}
19
20
check() {
21
cd "libcsv-$pkgver"
22
make -k check
23
}
24
25
package() {
26
cd "libcsv-$pkgver"
27
make DESTDIR="$pkgdir/" install
28
}
29
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-30 19:44:01 | Medium | 1 |
| 2026-06-18 16:11:54 | Clean | 0 |