diff options
author | Thiago Almeida <thiago.almeida@topgolf.com> | 2020-04-29 23:37:44 +0200 |
---|---|---|
committer | Thiago Almeida <thiago.almeida@topgolf.com> | 2020-04-29 23:37:44 +0200 |
commit | 37996027e2f0d81ce057fc261b7d4de5161a1bca (patch) | |
tree | e5027062558bac18cea1ec11849d98cb4264ba82 | |
parent | 96e377ca903bb3a078f1dc21c800532a0e25c1ce (diff) |
Adding i386 arch
-rw-r--r-- | .SRCINFO | 3 | ||||
-rw-r--r-- | PKGBUILD | 6 |
2 files changed, 7 insertions, 2 deletions
@@ -4,12 +4,15 @@ pkgbase = qrcp-bin pkgrel = 1 url = https://github.com/claudiodangelis/qrcp arch = x86_64 + arch = i386 license = MIT provides = qrcp conflicts = qrcp-git conflicts = qr-filetransfer-git source_x86_64 = qrcp-bin-0.6.1.tar.gz::https://github.com/claudiodangelis/qrcp/releases/download/0.6.1/qrcp_0.6.1_linux_x86_64.tar.gz sha256sums_x86_64 = e8ea7897cd0670836af7322b2bbe673246908686b8c56b0fe1636f6a9a06e32a + source_i386 = qrcp-bin-0.6.1.tar.gz::https://github.com/claudiodangelis/qrcp/releases/download/0.6.1/qrcp_0.6.1_linux_i386.tar.gz + sha256sums_i386 = 924eecdc8881fea5c6137775562bb59c9221ccf9e89a73a5deea38914427a16d pkgname = qrcp-bin @@ -5,12 +5,14 @@ pkgver=0.6.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') +arch=('x86_64' 'i386') license=('MIT') provides=('qrcp') conflicts=('qrcp-git' 'qr-filetransfer-git') -source_x86_64=("$pkgname-$pkgver.tar.gz::https://github.com/claudiodangelis/qrcp/releases/download/${pkgver}/${pkgname/-bin/}_${pkgver}_linux_x86_64.tar.gz") +source_x86_64=("$pkgname-$pkgver.tar.gz::$url/releases/download/${pkgver}/${pkgname/-bin/}_${pkgver}_linux_x86_64.tar.gz") +source_i386=("$pkgname-$pkgver.tar.gz::$url/releases/download/${pkgver}/${pkgname/-bin/}_${pkgver}_linux_i386.tar.gz") sha256sums_x86_64=('e8ea7897cd0670836af7322b2bbe673246908686b8c56b0fe1636f6a9a06e32a') +sha256sums_i386=('924eecdc8881fea5c6137775562bb59c9221ccf9e89a73a5deea38914427a16d') package() { install -Dm755 qrcp "$pkgdir/usr/bin/qrcp" |