Created
December 5, 2014 16:11
-
-
Save afair/ac3cf215ed5bc89cd40c to your computer and use it in GitHub Desktop.
Install Nokogiri on FreeBSD
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 | |
gem install nokogiri -- \ | |
--use-system-libraries \ | |
--with-xml2-lib=/usr/local/lib \ | |
--with-xml2-include=/usr/local/include/libxml2/libxml \ | |
--with-xslt-lib=/usr/local/lib \ | |
--with-xslt-include=/usr/local/include/libxslt \ | |
--with-iconv-lib=/usr/local/lib \ | |
--with-iconv-include=/usr/local/include |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks. Its work for me.