summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorjadelord2016-01-03 13:16:42 +0100
committerjadelord2016-01-03 13:16:42 +0100
commit751d0f7c71fadf88fa48f830f46ccee62fcba91d (patch)
tree718966a22cd949e49d216ca20e0fb67c8148c722
parent7d17986ca0dcbb31caa6d2cc2a1fdb9b794b0d74 (diff)
downloadaur-751d0f7c71fadf88fa48f830f46ccee62fcba91d.tar.gz
Fix bug : _filename variable was undefined in last commit
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD8
2 files changed, 6 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 776c6818f178..b446d63a9d87 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
# Generated by mksrcinfo v8
# Sat Jan 2 20:56:59 UTC 2016
pkgbase = sendanywhere
- pkgdesc = Send Anywhere, a peer-to-peer file sharing service
+ pkgdesc = Send Anywhere, a cross platform peer-to-peer file sharing service. Allow users to send files of any type and size across Android, iOS, and Desktop.
pkgver = 1.12.18
pkgrel = 1
url = https://send-anywhere.com
diff --git a/PKGBUILD b/PKGBUILD
index 2d6f96483920..91230a666442 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=sendanywhere
pkgver=1.12.18
pkgrel=1
-pkgdesc="Send Anywhere, a peer-to-peer file sharing service"
+pkgdesc="Send Anywhere, a cross platform peer-to-peer file sharing service. Allow users to send files of any type and size across Android, iOS, and Desktop."
arch=('i686' 'x86_64')
url="https://send-anywhere.com"
license=('custom:sendanywhere_eula')
@@ -14,10 +14,12 @@ install=$pkgname.install
if [[ $CARCH = i686 ]];then
sha256sums_i686=('ffdac92b5cce6e48af1c6cde2d2917ac6432089e7c327ccb2be1f7800609a974')
- source_i686=("https://update.send-anywhere.com/linux_downloads/sendanywhere_latest_i386.deb")
+ _filename="sendanywhere_latest_i386.deb"
+ source_i686=("https://update.send-anywhere.com/linux_downloads/${_filename}")
else
sha256sums_x86_64=('ad0168f85fbc2f3051a630dbd1621d5c48b2f2d32cfd76c961da391b57a10122')
- source_x86_64=("https://update.send-anywhere.com/linux_downloads/sendanywhere_latest_amd64.deb")
+ _filename="sendanywhere_latest_amd64.deb"
+ source_x86_64=("https://update.send-anywhere.com/linux_downloads/${_filename}")
fi
package() {