diff options
author | Thiago Almeida <thiago.almeida@topgolf.com> | 2020-04-23 10:10:57 +0200 |
---|---|---|
committer | Thiago Almeida <thiago.almeida@topgolf.com> | 2020-04-23 10:10:57 +0200 |
commit | ce5323d820500bfb363aa270d34f82f2f84c47ac (patch) | |
tree | e27e649fdb0e96fda7376d7684ebb17d210fbd12 |
Initial release version 0.4.1-1
-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 0000000..a797f08 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,13 @@ +pkgbase = qrcp + pkgdesc = Transfer files over wifi from your computer to your mobile device by scanning a QR code without leaving the terminal. + pkgver = 0.4.1 + pkgrel = 1 + url = https://github.com/claudiodangelis/qrcp + arch = x86_64 + license = MIT + provides = qrcp + source_x86_64 = https://github.com/claudiodangelis/qrcp/releases/download/0.4.1/qrcp + sha256sums_x86_64 = a113aa0bfd54ce2605826be1fb1381ec1079a17796a5fd75f6ea54e78b69ef78 + +pkgname = qrcp + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..3228f88 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,16 @@ +# Maintainer: Thiago Almeida <echo "dGhpYWdvYWxtZWlkYXNhQGdtYWlsLmNvbQo=" | base64 -d> + +pkgname=qrcp +pkgver=0.4.1 +pkgrel=1 +pkgdesc="Transfer files over wifi from your computer to your mobile device by scanning a QR code without leaving the terminal." +url="https://github.com/claudiodangelis/qrcp" +arch=('x86_64') +license=('MIT') +provides=('qrcp') +source_x86_64=("https://github.com/claudiodangelis/qrcp/releases/download/${pkgver}/${pkgname}") +sha256sums_x86_64=('a113aa0bfd54ce2605826be1fb1381ec1079a17796a5fd75f6ea54e78b69ef78') + +package() { + install -Dm755 qrcp "$pkgdir/usr/bin/qrcp" +} |