-
-
This should probably be rephrased to something like "stand alone build system" or maybe just "building" or something. In purple3/pidgin3 we explicitly don't support the old setup where you could drop a plugin file in the directory and then compile it there which I believe is what you're referncing.
-
While this is generally good for users, it causes all sorts of issues for packagers. Perviously plugins have checked if a custom prefix was set and if not then fall back to the value in the plugin directory.
I know this sounds silly, but this is a real issue for homebrew on mac and something else I can't recall right now.
-
Improve the C plugin tutorial and fix the property issue
Review Request #1707 — Created Aug. 31, 2022 and discarded
Improve the C plugin tutorial and fix the property issue
Summary | ID |
---|---|
571fc7f8b6d8a46a0954fa239d1a5aa5224c0caf | |
72aa8341d272048950d3ad41665ea4f7ab78dc9b | |
6bb94f5c9f277330e4891ff2cbf3e80d8a13ccb8 | |
600624a6032071fbc8bbc7cee2e4e567c44a3de4 |
Description | From | Last Updated |
---|---|---|
This should probably be rephrased to something like "stand alone build system" or maybe just "building" or something. In purple3/pidgin3 … |
grim | |
While this is generally good for users, it causes all sorts of issues for packagers. Perviously plugins have checked if … |
grim | |
indentation is weird here |
grim | |
install directory should be configured via the --prefix argument to meson which is available via get_option('prefix'). There's no need to … |
grim |
- Commits:
-
Summary ID e4243136d3adcc9d84b5944d4d2b8d6edf9fd8ca 9fae773dbf175dff122656b98339dc2c9489f18c 08f763f8d0175a112f42034c50c69f6be550fa58 bfb0d1b92ea922bf850b2649f4004a2d5afc0ad9 0f8d2a1fac4bd60188cf28e4bac44d1e08dd854d - Diff:
-
Revision 2 (+77 -5)
- Commits:
-
Summary ID 08f763f8d0175a112f42034c50c69f6be550fa58 bfb0d1b92ea922bf850b2649f4004a2d5afc0ad9 0f8d2a1fac4bd60188cf28e4bac44d1e08dd854d 571fc7f8b6d8a46a0954fa239d1a5aa5224c0caf 72aa8341d272048950d3ad41665ea4f7ab78dc9b 6bb94f5c9f277330e4891ff2cbf3e80d8a13ccb8 600624a6032071fbc8bbc7cee2e4e567c44a3de4 - Diff:
-
Revision 3 (+94 -6)
-
-
install directory should be configured via the
--prefix
argument to meson which is available viaget_option('prefix')
.There's no need to pull a shell environment variable in here which would break the build when not using a UNIX shell, like compiling under command prompt or power shell on windows.
Generally speaking, if the prefix is set to
/usr/local
it should be save to override with the value from purple's pkg-config file.