-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🚧 Working on a package description for Arch Linux
- Loading branch information
1 parent
b177eb3
commit 320bea0
Showing
2 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
/.idea | ||
/target | ||
/pkg | ||
/.docker_volumes | ||
*.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Maintainer: Tim Janke <tim+github@janke.biz> | ||
pkgname=stwnsh-rs | ||
pkgver=2022.9.25 | ||
pkgrel=1 | ||
#makedepends=('rust' 'cargo') | ||
arch=('i686' 'x86_64' 'armv6h' 'armv7h') | ||
pkgdesc="A small and easy to use tool for hashing passwords with different hash functions." | ||
|
||
build() { | ||
return 0 | ||
} | ||
|
||
package() { | ||
cd $srcdir | ||
cargo install --root="$pkgdir" --git=https://github.com/flying7eleven/stwnsh-rs | ||
} |