diff options
author | Dimitris Kiziridis | 2020-10-29 10:56:44 +0200 |
---|---|---|
committer | Dimitris Kiziridis | 2020-10-29 10:56:44 +0200 |
commit | 939cbc648d808a88a4e21bd530b803030f3e6e6c (patch) | |
tree | 5d17de6600c23654c68cf650ba5598e20803152c | |
download | aur-939cbc648d808a88a4e21bd530b803030f3e6e6c.tar.gz |
Initial commit
-rw-r--r-- | .SRCINFO | 13 | ||||
-rw-r--r-- | PKGBUILD | 16 |
2 files changed, 29 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..557dda52c0b0 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,13 @@ +pkgbase = distribyted-bin + pkgdesc = Torrent client with on-demand file downloading as a filesystem + pkgver = 0.2.0 + pkgrel = 1 + url = https://github.com/distribyted/distribyted + arch = x86_64 + license = GPL3 + depends = gcc-libs + source = distribyted-bin-0.2.0::https://github.com/distribyted/distribyted/releases/download/v0.2.0/distribyted-v0.2.0-linux-amd64 + sha256sums = 9fbb56b2af1c7899ef183f283f0facfcd724cf8d6a700724d777d28212996faf + +pkgname = distribyted-bin + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..71d9fa51b91a --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,16 @@ +# Maintainer: Dimitris Kiziridis <ragouel at outlook dot com> + +pkgname=distribyted-bin +pkgver=0.2.0 +pkgrel=1 +pkgdesc="Torrent client with on-demand file downloading as a filesystem" +arch=('x86_64') +url='https://github.com/distribyted/distribyted' +license=('GPL3') +depends=('gcc-libs') +source=("${pkgname}-${pkgver}::https://github.com/distribyted/distribyted/releases/download/v${pkgver}/distribyted-v${pkgver}-linux-amd64") +sha256sums=('9fbb56b2af1c7899ef183f283f0facfcd724cf8d6a700724d777d28212996faf') + +package() { + install -Dm755 ${pkgname}-${pkgver} "${pkgdir}/usr/bin/distribyted" +} |