mirror of
https://github.com/SinTan1729/lure-repo.git
synced 2024-12-26 06:48:35 -06:00
Added gocryptfs
This commit is contained in:
parent
8678b463ff
commit
21b7a2e1f0
1 changed files with 30 additions and 0 deletions
30
gocryptfs/lure.sh
Normal file
30
gocryptfs/lure.sh
Normal file
|
@ -0,0 +1,30 @@
|
|||
name='gocryptfs'
|
||||
version=VERSION
|
||||
release=1
|
||||
desc='Encrypted overlay filesystem written in Go'
|
||||
homepage='https://github.com/rfjakob/gocryptfs/'
|
||||
architectures=('amd64')
|
||||
maintainer='SinTan1729'
|
||||
license=('MIT')
|
||||
provides=('gocryptfs', 'gocryptfs-xray')
|
||||
conflicts=('gocryptfs', 'gocryptfs-xray')
|
||||
git_repo="rfjakob/gocryptfs"
|
||||
|
||||
sources=()
|
||||
checksums=()
|
||||
|
||||
version() {
|
||||
printf "$(curl --silent "https://api.github.com/repos/${git_repo}/releases/latest" | grep -Eo '"tag_name": "v(.*)"' | sed -E 's/.*"([^"]+)".*/\1/')"
|
||||
}
|
||||
|
||||
package() {
|
||||
vers="$(curl --silent "https://api.github.com/repos/${git_repo}/releases/latest" | grep -Eo '"tag_name": "v(.*)"' | sed -E 's/.*"([^"]+)".*/\1/')"
|
||||
echo Installing ${name} ${vers}
|
||||
curl -L "https://github.com/${git_repo}/releases/download/${vers}/${name}_${vers}_linux-static_${architectures}.tar.gz" -o ${name}.tar.gz
|
||||
tar xzf "${name}.tar.gz" -C .
|
||||
install -Dm755 "./${name}" "${pkgdir}/usr/local/bin/${name}"
|
||||
install -Dm755 "./${name}-xray" "${pkgdir}/usr/local/bin/${name}-xray"
|
||||
install -Dm644 "./${name}.1" "${pkgdir}/usr/local/share/man/man1/${name}.1"
|
||||
install -Dm644 "./${name}-xray.1" "${pkgdir}/usr/local/share/man/man1/${name}-xray.1"
|
||||
}
|
||||
|
Loading…
Reference in a new issue