Mercurial > pidgin.yaz
annotate PLUGIN_HOWTO @ 14612:1f46715c08d9
[gaim-migrate @ 17340]
Put gaim-text and the gnt stuff into a gaim-text RPM so that our main RPM doesn't
depend on ncurses.
rpmbuild -ta gaim-2.0.0dev.tar.bz2 doesn't work for me anymore. Did it used to?
Does it work for other people? For me it prints
error: Name field must be present in package: (main package)
error: Version field must be present in package: (main package)
error: Release field must be present in package: (main package)
error: Summary field must be present in package: (main package)
error: Group field must be present in package: (main package)
error: License field must be present in package: (main package)
And it creates a file called "tar: Pattern matching characters used in file n
ames. Please," in my ~/rpmbuild/SPECS directory. It does not put gaim.spec
in my ~/rpmbuild/SPECS directory, and it does not put anything in
~/rpmbuild/BUILD or ~/rpmbuild/SOURCES, either
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Sat, 23 Sep 2006 19:04:03 +0000 |
parents | 7acebc9d043f |
children | cc3c50816cc9 |
rev | line source |
---|---|
14505 | 1 For information on writing a plugin for Gaim, go |
2 http://gaim.sourceforge.net/api/ and see the HOWTOs in the | |
3 "Related Pages" section. | |
4 | |
5 You can also generate this documentation locally by installing | |
6 doxygen and graphviz dot, then running "make docs" in the Gaim | |
7 source tree. The documentation will be in the docs/html directory. | |
8 | |
9 This next paragraph is old and possibly out of date: | |
10 Compilation of the plugins is fairly straight-forward; there is a | |
11 Makefile in this directory that has a rule for making the .so file | |
12 from a .c file. No modification of the Makefile should be necessary, | |
13 unless if you simply want to type 'make' to have it made; otherwise, | |
14 'make filename.so' will take filename.c and make the .so plugin from | |
15 it. If you need to link in with extra libraries, you can set the | |
16 environment variable PLUGIN_LIBS to be the libraries you want to link | |
17 with. | |
18 | |
19 It should be possible to compile plugins outside of the Gaim source | |
20 tree, which is a much cleaner solution. |