prompt-exporter
LOW
maintainer alexz
0 votes
scanned 2026-09-25 11:11:47.608437
Why flagged
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
Triggered rules
Low
Few votes, recently uploaded
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
PKGBUILD
1
# Maintainer: Alexandru Zbarcea <alexz@apache.org>
2
3
pkgname=prompt-exporter
4
pkgver=2.0.1
5
pkgrel=1
6
pkgdesc="CLI to sync AI conversation prompts from multiple sources (ChatGPT first)"
7
arch=('any')
8
url="https://github.com/azbarcea/prompt-exporter"
9
license=('Apache-2.0')
10
depends=('nodejs' 'chromium')
11
makedepends=('npm')
12
conflicts=("${pkgname}-git")
13
source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/refs/tags/v${pkgver}.tar.gz")
14
sha256sums=('ed396c0dbd095c911603a98f1d793896e7c20a1a0ed2466a5205f1377cddda85')
15
16
prepare() {
17
cd "${srcdir}/${pkgname}-${pkgver}"
18
rm -rf node_modules dist
19
}
20
21
build() {
22
cd "${srcdir}/${pkgname}-${pkgver}"
23
npm install --cache "${srcdir}/npm-cache"
24
npm run build
25
npm prune --omit=dev --cache "${srcdir}/npm-cache"
26
}
27
28
package() {
29
cd "${srcdir}/${pkgname}-${pkgver}"
30
31
local _libdir="${pkgdir}/usr/lib/${pkgname}"
32
install -dm755 "${_libdir}"
33
34
cp -a dist package.json node_modules "${_libdir}/"
35
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
36
install -Dm644 NOTICE "${pkgdir}/usr/share/licenses/${pkgname}/NOTICE"
37
install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
38
if [[ -d docs ]]; then
39
install -dm755 "${pkgdir}/usr/share/doc/${pkgname}"
40
install -Dm644 docs/*.md "${pkgdir}/usr/share/doc/${pkgname}/"
41
fi
42
43
install -dm755 "${pkgdir}/usr/bin"
44
ln -s "/usr/lib/${pkgname}/dist/index.js" "${pkgdir}/usr/bin/prompt-exporter"
45
}
46
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-25 11:11:47 | Low | 1 |
| 2026-09-25 00:03:36 | Clean | 2 |
| 2026-09-24 17:43:55 | Low | 1 |