Created
January 19, 2020 00:31
-
-
Save frostu8/affeaf3b7d7ca457f7931fa6cf1edce1 to your computer and use it in GitHub Desktop.
lbry-sdk (lbrynet) standalone
This file contains hidden or 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
| #!/bin/sh | |
| # LBRY-SDK VARIABLES | |
| pkgname=lbry-sdk-git | |
| pkgver=0.53.3 | |
| pkgrel=1 | |
| pkgdesc='Decentrilized marketplace LBRY (SDK)' | |
| url='https://lbry.com/' | |
| arch=('any') | |
| depends=('python') | |
| makedepends=('zip') | |
| source=("https://github.com/lbryio/lbry-sdk/releases/download/v${pkgver}/lbrynet-linux.zip") | |
| sha512sums=('SKIP') | |
| package() | |
| { | |
| mkdir -p ${pkgdir}/usr/bin | |
| unzip -d ${pkgdir}/usr/bin lbrynet-linux.zip | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment