sifter-git
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-git"
5
pkgver=0.1.0.r1.g03565fd
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")
17
sha256sums=('SKIP')
18
19
pkgver() {
20
cd "$_pkgbase"
21
git describe --long --tags --abbrev=7 | sed 's/\([^-]*-g\)/r\1/;s/-/./g;s/^v//'
22
}
23
24
prepare() {
25
cd "$_pkgbase"
26
export RUSTUP_TOOLCHAIN=stable
27
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
28
}
29
30
build() {
31
cd "$_pkgbase"
32
export RUSTUP_TOOLCHAIN=stable
33
export CARGO_TARGET_DIR=target
34
cargo build --frozen --release
35
}
36
37
check() {
38
cd "$_pkgbase"
39
export RUSTUP_TOOLCHAIN=stable
40
cargo test --frozen
41
}
42
43
package() {
44
cd "$_pkgbase"
45
install -Dm0755 "target/release/$_pkgbase" "$pkgdir/usr/bin/$_pkgbase"
46
install -Dm0644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
47
install -Dm0644 CHANGELOG.md "$pkgdir/usr/share/doc/$pkgname/CHANGELOG.md"
48
install -Dm0644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
49
}
50
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-18 15:40:04 | LOW | 1 |