We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aad6c6a commit e3c58e3Copy full SHA for e3c58e3
.travis.yml
@@ -6,10 +6,7 @@ compiler: gcc
6
sudo: true
7
before_install:
8
- sudo apt-get install gforth libffi-dev yodl
9
- - git clone https://github.com/GeraldWodni/swig.git
10
- - cd swig && ./autogen.sh && ./configure --prefix=$HOME && make
11
- - cd swig && make install
12
- - export PATH=$PATH:$HOME/bin
+ - ./install-swig.sh
13
script:
14
- ./autogen.sh
15
- ./configure
install-swig.sh
@@ -0,0 +1,4 @@
1
+#!/bin/sh
2
+
3
+git clone https://github.com/GeraldWodni/swig.git
4
+(cd swig && ./autogen.sh && ./configure && make && sudo make install)
0 commit comments