prompt-exporter

LOW
maintainer alexz 0 votes scanned 2026-09-25 11:11:47.608437
View on AUR
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
3pkgname=prompt-exporter
4pkgver=2.0.1
5pkgrel=1
6pkgdesc="CLI to sync AI conversation prompts from multiple sources (ChatGPT first)"
7arch=('any')
8url="https://github.com/azbarcea/prompt-exporter"
9license=('Apache-2.0')
10depends=('nodejs' 'chromium')
11makedepends=('npm')
12conflicts=("${pkgname}-git")
13source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/refs/tags/v${pkgver}.tar.gz")
14sha256sums=('ed396c0dbd095c911603a98f1d793896e7c20a1a0ed2466a5205f1377cddda85')
15
16prepare() {
17 cd "${srcdir}/${pkgname}-${pkgver}"
18 rm -rf node_modules dist
19}
20
21build() {
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
28package() {
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)SeverityRules
2026-09-25 11:11:47 Low 1
2026-09-25 00:03:36 Clean 2
2026-09-24 17:43:55 Low 1

Report a package

Reports go to the AURWatch maintainer (one person) and are read by hand. No login required.

0 / 4000
Your suggestion