tuigreet: initial commit, version 0.8.0

This commit is contained in:
Tim Biermann 2022-10-30 09:24:37 +00:00
parent 54bed8ca77
commit d5bd8b5c42
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 31 additions and 0 deletions

3
tuigreet/.footprint Normal file
View File

@ -0,0 +1,3 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/tuigreet

5
tuigreet/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3yD/RSaw+F392T/YwpPOYk0/II3yJB/s+JAeKpZ2fTEd4IHGjtYhRzmB7k7iiQOmAV3xDe9JYYKsJWriLYt6gAA=
SHA256 (Pkgfile) = 00a2229b45a8f17d50170ef3b1af2b217e11e8e9980ad088271ce8e89b8a3015
SHA256 (.footprint) = 8d67f66389b00b5d20929394bde05dcc10ae452b8960e650c3a1fe2975149cdf
SHA256 (tuigreet-0.8.0.tar.gz) = ed371ebe288a3e5782f01681c6c4ed4786b470184af286fa0e7b8898e47c154e

23
tuigreet/Pkgfile Normal file
View File

@ -0,0 +1,23 @@
# Description: Graphical console greeter for greetd
# URL: https://github.com/apognu/tuigreet
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: greetd
name=tuigreet
version=0.8.0
release=1
source=(https://github.com/apognu/tuigreet/archive/$version/$name-$version.tar.gz)
build() {
prt-get isinst sccache && export RUSTC_WRAPPER=/usr/bin/sccache
mkdir "$PKGMK_SOURCE_DIR/rust" || true
export CARGO_HOME="$PKGMK_SOURCE_DIR/rust"
cargo build --release --manifest-path $name-$version/Cargo.toml
install -Dt $PKG/usr/bin $name-$version/target/release/$name
prt-get isinst scdoc && (
scdoc < "$name-$version/contrib/man/$name-1.scd"> $SRC/$name-1.roff
install -Dm755 $SRC/$name-1.roff $PKG/usr/share/man/man1/$name.1) || true
}