mirror of
https://github.com/SinTan1729/lure-repo.git
synced 2024-12-25 22:38:36 -06:00
Fix download link
This commit is contained in:
parent
21b7a2e1f0
commit
5ac1f1fa95
1 changed files with 4 additions and 4 deletions
|
@ -6,8 +6,8 @@ homepage='https://github.com/rfjakob/gocryptfs/'
|
|||
architectures=('amd64')
|
||||
maintainer='SinTan1729'
|
||||
license=('MIT')
|
||||
provides=('gocryptfs', 'gocryptfs-xray')
|
||||
conflicts=('gocryptfs', 'gocryptfs-xray')
|
||||
provides=('gocryptfs' 'gocryptfs-xray')
|
||||
conflicts=('gocryptfs' 'gocryptfs-xray')
|
||||
git_repo="rfjakob/gocryptfs"
|
||||
|
||||
sources=()
|
||||
|
@ -20,11 +20,11 @@ version() {
|
|||
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
|
||||
curl -L "https://github.com/${git_repo}/releases/download/${vers}/${name}_${vers}_linux-static_${ARCH}.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