You are not logged in.
The PKGBUILD for citrix-client in AUR is broken. The source line is supposed to download the citrix client from Citrix.com but the filename on the server keeps changing. I downloaded the file linuxx86_12.1.0.203066.tar.gz manually but I'm not sure how to edit the PKGBUILD to just use the local file I already downloaded instead of trying (and failing) to retrieve it from the server.
Here's the section that I need to change:
build() {
# Source array is empty due to the dynamic nature, grabbing it and handling things here...
sourcefile="$(wget -qO- 'http://www.citrix.com/downloads/citrix-receiver/receivers-by-platform/receiver-for-linux-121.html' | awk -F 'rel=\"' '/linuxx86_12.1.0./ {print $2}'| awk -F'"' '{print $1}'| sed '/^$/d')"
cd "${srcdir}"
wget "${sourcefile}"
tar zxvf `ls -tr | tail -1`It's frustrating me because I've done this before a month ago and it worked but I can't figure out the proper syntax this time. Any help would be appreciated!
Last edited by nhasian (2013-07-09 08:49:56)
MSI MEG Z390 ACE Motherboard, Intel Core i7-9700K, MSI GeForce RTX 2080
Offline
Does commenting out the unneeded parts help?
Offline
I finally got it to build properly. I had to generate a new token to be able to download the file from Citrix's website by accepting the EULA. then I input that url into the source line of the PKGBUILD and it was able to complete the installation successfully.
MSI MEG Z390 ACE Motherboard, Intel Core i7-9700K, MSI GeForce RTX 2080
Offline