Created
March 17, 2014 13:44
-
-
Save bagf/9599401 to your computer and use it in GitHub Desktop.
Downloads and install libxl 3.5.4 for linux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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