diff options
author | Ilya Zlobintsev | 2020-10-31 08:16:07 +0200 |
---|---|---|
committer | Ilya Zlobintsev | 2020-10-31 08:16:07 +0200 |
commit | 76ebb99ee8ce500d48d5c3930f527f43928b12be (patch) | |
tree | 34f6160407bf9aeb5a346fca13dd032eeef0c06b | |
download | aur-76ebb99ee8ce500d48d5c3930f527f43928b12be.tar.gz |
Init
-rw-r--r-- | .SRCINFO | 12 | ||||
-rw-r--r-- | PKGBUILD | 21 |
2 files changed, 33 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..46a83cd6562d --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,12 @@ +pkgbase = twitch-downloader-bin + pkgdesc = Twitch VOD/Clip Downloader - Chat Download/Render/Replay + pkgver = 1.37 + pkgrel = 1 + url = https://github.com/lay295/TwitchDownloader + arch = x86_64 + makedepends = unzip + source = https://github.com/lay295/TwitchDownloader/releases/download/1.37/TwitchDownloaderCLI-Linux-x64.zip + sha512sums = 55a596eaaaf9b9390859fa729becb336afc850d1608fa84f9f886a5901054822425ad024ba460e6eca1ff212d478584284d9ce17a1945aebe74a36a52f2f5f35 + +pkgname = twitch-downloader-bin + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..4c459f895a29 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,21 @@ +# Maintainer: Ilya Zlobintsev <ilya.zl@protonmail.com> + +pkgname=twitch-downloader-bin +pkgver=1.37 +pkgrel=1 +pkgdesc="Twitch VOD/Clip Downloader - Chat Download/Render/Replay" +makedepends=("unzip") +arch=("x86_64") +url="https://github.com/lay295/TwitchDownloader" +#license=("") +source=("https://github.com/lay295/TwitchDownloader/releases/download/${pkgver}/TwitchDownloaderCLI-Linux-x64.zip") +sha512sums=("55a596eaaaf9b9390859fa729becb336afc850d1608fa84f9f886a5901054822425ad024ba460e6eca1ff212d478584284d9ce17a1945aebe74a36a52f2f5f35") + +prepare() { + cd "$srcdir" + unzip -o TwitchDownloaderCLI-Linux-x64.zip +} + +package() { + install -Dm755 "$srcdir/TwitchDownloaderCLI" "$pkgdir/usr/bin/TwitchDownloaderCLI" +} |