summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrés M <andmarti1424@users.noreply.github.com>2017-11-21 15:09:43 -0300
committerGitHub <noreply@github.com>2017-11-21 15:09:43 -0300
commit6c3967ed314cf625f7edf2ae48bb7911edca4ae3 (patch)
tree5445c6e0328da460b614b0bb4fb98ac545aabca5
parentc8b199d9f49eea249f43f10c061869da61844dc8 (diff)
parenta71e796a665c43f1d35d560392ec370035a334a4 (diff)
Merge pull request #210 from stroobandt/patch-1
Makefile and installation instructions for Ubuntu.
-rw-r--r--Readme.md16
-rwxr-xr-xsrc/Makefile4
2 files changed, 20 insertions, 0 deletions
diff --git a/Readme.md b/Readme.md
index c944f0a..c28cb31 100644
--- a/Readme.md
+++ b/Readme.md
@@ -61,6 +61,22 @@ brew tap nickolasburr/pfa
brew install sc-im
```
+### Ubuntu with XLSX import & export
+
+See [this wiki page](https://github.com/andmarti1424/sc-im/wiki/Ubuntu-with-XLSX-import-&-export).
+
+### Configuration
+
+The file `~/.scimrc` contains configuration data. Here is an example.
+
+ set autocalc
+ set numeric
+ set numeric_decimal=0
+ set overlap
+ set xlsx_readformulas
+
+Other configuration variables are listed in the [help file](https://raw.githubusercontent.com/andmarti1424/sc-im/freeze/src/doc).
+
### Helping us
Want to help? You can help us with one or more of the following:
diff --git a/src/Makefile b/src/Makefile
index e3770c7..dd49467 100755
--- a/src/Makefile
+++ b/src/Makefile
@@ -77,6 +77,10 @@ ifneq (,$(wildcard /usr/include/xlsxwriter.h))
CFLAGS += -DXLSX_EXPORT
LDLIBS += -lxlsxwriter
endif
+ifneq (,$(wildcard /usr/local/include/xlsxwriter.h))
+ CFLAGS += -DXLSX_EXPORT
+ LDLIBS += -lxlsxwriter
+endif
# Check for gnuplot existance
ifneq (, $(shell which gnuplot))