Hi all,
Is there any possibility to download separate plugin from nightly builds or somewhere else? I need 32-bit version of pairtaghighlighter, people in comments asked - http://kononenko.ws/en/blog/2013-06-06/pairtaghighlighter_for_geany_1.23
Thanks in advance!
On 22 February 2014 09:04, Volodymyr Kononenko vmkononenko@gmail.com wrote:
Hi all,
Is there any possibility to download separate plugin from nightly builds or somewhere else? I need 32-bit version of pairtaghighlighter, people in comments asked - http://kononenko.ws/en/blog/2013-06-06/pairtaghighlighter_for_geany_1.23
The nightlies are essentially trial builds of the entire infrastructure, so they don't provide separate plugins.
Some of the distributions separate out each plugin individually, see what yours has.
Otherwise you can build it from source.
Cheers Lex
Thanks in advance!
-- Best regards, Volodymyr Kononenko http://kononenko.ws
Devel mailing list Devel@lists.geany.org https://lists.geany.org/cgi-bin/mailman/listinfo/devel
Hi all,
Is there any possibility to download separate plugin from nightly builds or somewhere else? I need 32-bit version of pairtaghighlighter, people in comments asked - http://kononenko.ws/en/blog/2013-06-06/pairtaghighlighter_for_geany_1.23
Thanks in advance!
I think, the simplest solution -- try to compile 32bit version of the plugin on your platform :)
Could you suggest how to do it with Geany build system?
On 22 February 2014 00:16, Frodox Frodox@zoho.com wrote:
Hi all,
Is there any possibility to download separate plugin from nightly builds
or
somewhere else? I need 32-bit version of pairtaghighlighter, people in comments asked - http://kononenko.ws/en/blog/2013-06-06/pairtaghighlighter_for_geany_1.23
Thanks in advance!
I think, the simplest solution -- try to compile 32bit version of the plugin on your platform :)
Devel mailing list Devel@lists.geany.org https://lists.geany.org/cgi-bin/mailman/listinfo/devel
On Sat, 22 Feb 2014 00:24:02 +0200 Volodymyr Kononenko vmkononenko@gmail.com wrote:
Could you suggest how to do it with Geany build system?
I think smth like
$ ./configure CC='gcc -m32' CFLAGS="-m32"
should do the trick. But you should also have 32bit version of necessary libs.
Thank you!
On 22 February 2014 00:33, Frodox Frodox@zoho.com wrote:
On Sat, 22 Feb 2014 00:24:02 +0200 Volodymyr Kononenko vmkononenko@gmail.com wrote:
Could you suggest how to do it with Geany build system?
I think smth like
$ ./configure CC='gcc -m32' CFLAGS="-m32"
should do the trick. But you should also have 32bit version of necessary libs.
Devel mailing list Devel@lists.geany.org https://lists.geany.org/cgi-bin/mailman/listinfo/devel
On Sat, 22 Feb 2014 00:04:40 +0200 Volodymyr Kononenko vmkononenko@gmail.com wrote:
Is there any possibility to download separate plugin from nightly builds or somewhere else? I need 32-bit version of pairtaghighlighter, people in comments asked - http://kononenko.ws/en/blog/2013-06-06/pairtaghighlighter_for_geany_1.23
In case of users comments below the blog posting I'd suggest them to build the plugin on their own. Even though there is some ppa for Ubuntu available, I'm not sure whether it's also for 12.04 32Bit. Compiling a single plugin is really easy. You have to install geany-dependencies and geany devel packages and than you can compile a single plugin direct from source tree of geany-plugins e.g. with
./waf configure --enable=xxx && ./waf build && sudo ./waf install
Cheers, Frank