I hereby claim:
- I am danigiri on github.
- I am danigiri (https://keybase.io/danigiri) on keybase.
- I have a public key whose fingerprint is 30CD 0FA4 F84A DB80 C525 D8AF CCE6 1586 1438 7AA0
To claim this, I am signing this object:
| # sshfs cheatsheet for vms in centos7 | |
| # host IP in the vm network | |
| export IP=192.168.46.1 | |
| # vm IP | |
| export VMIP=192.168.46.132 | |
| #host user | |
| export USER_=dani | |
| # host GIT folder | |
| export SOURCE="/Users/$USER_/Documents/GIT" | |
| # home on vm |
I hereby claim:
To claim this, I am signing this object:
| # install boost dependency | |
| brew install -v boost --with-icu | |
| # interactively install freeling | |
| brew install -i freeling | |
| # setup environment, for some reason the boost headers are not detected, so we specify them | |
| # note that it needs to reflect the appropriate boost version number installed | |
| export LDFLAGS="-L/usr/local/opt/libtool/lib -L/usr/local/opt/icu4c/lib -L/usr/local/Cellar/boost/1.56.0/lib" | |
| export CPPFLAGS="-I/usr/local/opt/libtool/include -I/usr/local/opt/icu4c/include -I/usr/local/Cellar/boost/1.56.0/include" |
| #!/bin/bash | |
| # with this hack in your path, maven rpm plugin will work on mac os x | |
| # -bb $1 | |
| # --buildroot $2 | |
| buildroot_="$3" | |
| # --define $4 | |
| topdir_="$5" | |
| # --target $6 |
| require 'formula' | |
| class Freeling < Formula | |
| homepage 'http://nlp.lsi.upc.edu/freeling/' | |
| head 'http://devel.cpl.upc.edu/freeling/svn/trunk', :using => :svn | |
| depends_on 'icu4c' | |
| # requires boost --with-icu. At the moment I think that is not possible (to force options) | |
| depends_on 'boost' | |
| depends_on 'libtool' |