18 lines
498 B
Bash
18 lines
498 B
Bash
|
pkgname=goodls-bin
|
||
|
pkgver=2.0.3
|
||
|
pkgrel=1
|
||
|
pkgdesc="This is a CLI tool to download shared files and folders from Google Drive."
|
||
|
arch=("x86_64")
|
||
|
_arch="amd64"
|
||
|
url="https://github.com/tanaikech/goodls"
|
||
|
license=('MIT')
|
||
|
source=("https://github.com/tanaikech/goodls/releases/download/v2.0.3/goodls_linux_${_arch}")
|
||
|
|
||
|
# makepkg -g
|
||
|
sha256sums=('ea5179e1a700e35017e91978c184643565295bca8e40d36ab13df10372bc5d4d')
|
||
|
|
||
|
|
||
|
package() {
|
||
|
install -Dm755 "${srcdir}/goodls_linux_${_arch}" "${pkgdir}/usr/bin/goodls"
|
||
|
}
|