faircamp-cli
LOW
maintainer simonrepp
0 votes
scanned 2026-09-23 17:40:40.806207
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: Simon Repp <simon@fdpl.io>
2
3
arch=('aarch64' 'x86_64')
4
conflicts=('faircamp' 'faircamp-bin' 'faircamp-git')
5
depends=('ffmpeg' 'opus')
6
license=('AGPL3')
7
makedepends=('cargo' 'cmake' 'git')
8
options=('!lto')
9
pkgdesc='A static site generator for audio producers'
10
pkgname=faircamp-cli
11
pkgrel=1
12
pkgver=2.0.0
13
sha256sums=('b0601a411fe041baae4da86bab4242fc964df6229ff2335955f1d5df46f2deff')
14
url='https://faircamp.org'
15
16
source=("faircamp-${pkgver}.tar.gz::https://codeberg.org/simonrepp/faircamp/archive/${pkgver}.tar.gz")
17
18
build() {
19
export RUSTUP_TOOLCHAIN=stable
20
export CARGO_TARGET_DIR=target
21
cd "$srcdir/faircamp"
22
cargo build --locked --offline --package faircamp-cli --release
23
}
24
25
package() {
26
mkdir -p "$pkgdir/usr/bin"
27
install -Dm755 "$srcdir/faircamp/target/release/faircamp-cli" "$pkgdir/usr/bin/faircamp"
28
}
29
30
prepare() {
31
# cargo fetch pulls in optional dependencies that are not used in build(),
32
# and which therefore have differing toolchain minimum requirements,
33
# therefore we specify nightly as toolchain here.
34
# See also: https://github.com/rust-lang/cargo/issues/5704
35
export RUSTUP_TOOLCHAIN=nightly
36
cd "$srcdir/faircamp"
37
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
38
}
39
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-23 17:40:40 | Low | 1 |