Raptor RDF from source on OSX

I am trying to create Raptor RDF syntax library.

I can install it successfully using homebrew, but would like to build from source.

However

LIBTOOLIZE=/usr/bin/glibtoolize ./autogen.sh 
autogen.sh: Looking for programs: automake aclocal autoconf autoheader libtoolize gtkdocize
autogen.sh: automake program 'automake' V 011200 (min 011102) in /usr/bin
autogen.sh: aclocal program 'aclocal' V 011200 (min 011102) in /usr/bin
autogen.sh: autoconf program 'autoconf' V 026900 (min 026200) in /usr/local/bin
autogen.sh: autoheader program 'autoheader' V 026900 (min 026200) in /usr/local/bin
autogen.sh: libtoolize program '/usr/bin/glibtoolize' V 020210 (min 020200) in environment
autogen.sh: gtkdocize program '' V 0 (min 010300) in 
autogen.sh: ERROR: You must have `gtkdocize' installed to compile this package.
     (version 010300 or newer is required)

      

gtkdocize seems to be a Linux program. How do I get around this?

Thanks and apologies for the rather nubian question.

+3


source to share


1 answer


You should build it from the released tarball, as you don't need to deal with the autotools bundle. It is also a tried and tested tarball. The latter is always linked to the Raptor homepage



However, if you want to do the autotools route, you need things like gtkdocize. It can be found in the package gtk-doc-tools (Debian), gtk-doc (Redhat) and gtk-doc (homebrew on OSX)

+4


source







All Articles