sifter
maintainer SelfRef
· 0 votes
· scanned 2026-08-18 15:40:04.149666
LOW
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: SelfRef <arch@selfref.dev>
2
3
_pkgbase=sifter
4
pkgname="$_pkgbase"
5
pkgver=0.1.0
6
pkgrel=1
7
pkgdesc='Catalog photos, videos and audio into a date-structured library by capture date'
8
arch=('x86_64' 'aarch64')
9
url='https://github.com/SelfRef/sifter'
10
license=('GPL-3.0-or-later')
11
depends=('gcc-libs' 'glibc')
12
makedepends=('cargo' 'git')
13
provides=("$_pkgbase")
14
conflicts=("$_pkgbase")
15
options=('!lto')
16
source=("$_pkgbase::git+https://github.com/SelfRef/sifter.git#tag=v$pkgver")
17
sha256sums=('d5726857de9f19eb2b20a2422c90e71da32a1f40b13daaa70e739d42b09caca2')
18
19
prepare() {
20
cd "$_pkgbase"
21
export RUSTUP_TOOLCHAIN=stable
22
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
23
}
24
25
build() {
26
cd "$_pkgbase"
27
export RUSTUP_TOOLCHAIN=stable
28
export CARGO_TARGET_DIR=target
29
cargo build --frozen --release
30
}
31
32
check() {
33
cd "$_pkgbase"
34
export RUSTUP_TOOLCHAIN=stable
35
cargo test --frozen
36
}
37
38
package() {
39
cd "$_pkgbase"
40
install -Dm0755 "target/release/$_pkgbase" "$pkgdir/usr/bin/$_pkgbase"
41
install -Dm0644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
42
install -Dm0644 CHANGELOG.md "$pkgdir/usr/share/doc/$pkgname/CHANGELOG.md"
43
install -Dm0644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
44
}
45
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-18 15:40:04 | LOW | 1 |