Skip to content

Instantly share code, notes, and snippets.

@bagf
Created March 17, 2014 13:44
Show Gist options
  • Save bagf/9599401 to your computer and use it in GitHub Desktop.
Save bagf/9599401 to your computer and use it in GitHub Desktop.
Downloads and install libxl 3.5.4 for linux
#!/bin/sh
# Get libxl library
echo "Downloading and extracting libxl 3.5.4 for linux..."
cd /tmp
wget -q -O libxl-lin-3.5.4.tar.gz ftp://xlware.com/libxl-lin-3.5.4.tar.gz
tar -xf libxl-lin-3.5.4.tar.gz
cd libxl-3.5.4.1/
cp lib/libxl.so /usr/lib/libxl.so
cp -r include_c/ /usr/include/libxl_c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment