Skip to content

Instantly share code, notes, and snippets.

@frostu8
Created January 19, 2020 00:31
Show Gist options
  • Select an option

  • Save frostu8/affeaf3b7d7ca457f7931fa6cf1edce1 to your computer and use it in GitHub Desktop.

Select an option

Save frostu8/affeaf3b7d7ca457f7931fa6cf1edce1 to your computer and use it in GitHub Desktop.
lbry-sdk (lbrynet) standalone
#!/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