diff options
author | lonkaars <loek@pipeframe.xyz> | 2024-02-13 21:06:35 +0100 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2024-02-13 21:06:35 +0100 |
commit | b9d515d80cbf61cda879e14855f24e3becbe58dc (patch) | |
tree | b4148486b301747bd61f47429e7ae49ec0f2b0fe /PKGBUILD |
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..8c43e70 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,16 @@ +# Maintainer: Loek Le Blansch <loek@pipeframe.xyz> + +pkgname=qft-bin +pkgver=0.5.6 +pkgrel=1 +pkgdesc="Quick Peer-To-Peer UDP file transfer" +arch=('x86_64') +url="https://github.com/TudbuT/qft" +license=('GPL3') +source=("https://github.com/TudbuT/qft/releases/download/v$pkgver/qft-nogui") +sha256sums=('29a6433df801c8082cbbd7bdc9f5f41dda98f56919dcd4b4cd9cf14a65deb64f') + +package() { + install -D -m 755 "$srcdir/qft-nogui" "$pkgdir/usr/bin/qft" +} + |