new port: lsd, next-Gen ls command

This commit is contained in:
Luis
2023-01-14 00:19:43 +00:00
parent 365c78ba0f
commit 86df8b9bc6
3 changed files with 20 additions and 0 deletions

1
main/lsd/.checksums Normal file
View File

@@ -0,0 +1 @@
5ef3cdc9494fb29076d49ab7b9364044 lsd-0.23.1.tar.gz

4
main/lsd/.pkgfiles Normal file
View File

@@ -0,0 +1,4 @@
lsd-0.23.1-1
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/lsd

15
main/lsd/spkgbuild Normal file
View File

@@ -0,0 +1,15 @@
# description : Next-Gen ls command
# homepage : https://github.com/Peltoche/lsd
# depends : rust
name=lsd
version=0.23.1
release=1
source="https://github.com/Peltoche/$name/archive/$version/$name-$version.tar.gz"
build() {
cd $name-$version
cargo build --release --locked
cargo install --locked --path . --root=$PKG/usr
rm $PKG/usr/.crates*
}