alk/gpicker

Trying to create homebrew formula

diasjorge opened this issue · 2 comments

I'm trying to get gpicker installed on osx.

I already installed gtk+ using homebrew which just made it very easy, unfortunately jhbuild seems to conflict with homebrew, although I'm not entirely sure about this.

Anyway, I've downloaded this repo, and I notice there is no ./configure but a configure.ac.in, I guess I'd have to use autoconf on this file first, am I right?

anyway I did this:

autoconf configure.ac.in

but I'm getting this error:

configure.ac.in:3: error: possibly undefined macro: AM_INIT_AUTOMAKE
If this token and others are legitimate, please use m4_pattern_allow.
See the Autoconf documentation.
configure.ac.in:16: error: possibly undefined macro: AM_CONDITIONAL

Do you have any clues what could this mean, I guess it's some of the macros are not available for autconf but I'm very new with all this.

Any help would be truly appreciated.

Greetings

alk commented

There's bootstrap script inside.

Latest version is using autoreconf which is not necessarily convenient for you. In this case try earlier version of this script. See version before commit: 9785a12

brew install gtk+
./configure
make && make install

works for me on OSX El Captain.