Search Criteria
Package Details: gromit-mpx-git 1.7.0.r7.ga982685-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/gromit-mpx-git.git (read-only, click to copy) |
---|---|
Package Base: | gromit-mpx-git |
Description: | On-screen annotation tool (git version) |
Upstream URL: | https://github.com/bk138/gromit-mpx/ |
Licenses: | GPL-2.0-or-later |
Conflicts: | gromit-mpx |
Provides: | gromit-mpx |
Submitter: | keenerd |
Maintainer: | dbermond |
Last Packager: | dbermond |
Votes: | 16 |
Popularity: | 0.000051 |
First Submitted: | 2015-11-06 12:08 (UTC) |
Last Updated: | 2025-04-05 18:19 (UTC) |
Dependencies (12)
- cairo (cairo-gitAUR)
- gdk-pixbuf2 (gdk-pixbuf2-gitAUR)
- glib2 (glib2-gitAUR, glib2-selinuxAUR, glib2-patched-thumbnailerAUR)
- glibc (glibc-gitAUR, glibc-linux4AUR, glibc-eacAUR)
- gtk3 (gtk3-no_deadkeys_underlineAUR, gtk3-classic-xfceAUR, gtk3-patched-filechooser-icon-viewAUR, gtk3-classicAUR)
- hicolor-icon-theme (hicolor-icon-theme-gitAUR)
- libappindicator-gtk3
- libx11 (libx11-gitAUR)
- libxi (libxi-gitAUR)
- lz4 (lz4-gitAUR)
- cmake (cmake-gitAUR, cmake3AUR) (make)
- git (git-gitAUR, git-glAUR) (make)
Latest Comments
dbermond commented on 2025-04-05 18:20 (UTC)
Package adopted. Pushed update to match the base package.
yochananmarqos commented on 2025-03-18 02:39 (UTC)
@m040601: Please submit an orphan request, then. ;)
m040601 commented on 2025-03-18 01:44 (UTC) (edited on 2025-03-18 01:49 (UTC) by m040601)
Gromit itself is pretty much alive and kicking,
The maintainer of this "gromit-mpx-git" PKGBUILD has not logged in or updated any of his PKGBUILD's since 2022.
As others have already pointed out, this PKGBUILD 'gromit-mpx-git' has several errors than need to be corrected in the "cmake"
Maybe the maintainer of "gromit-mpx" , https://aur.archlinux.org/packages/gromit-mpx, would like to adopt this "gromit-mpx-git" ? Would be better for consistency if the same person took care of both.
Currently, 2025-03-18 ,
$ pacman -Ql gromit-mpx-git
Notice that "/usr/etc/". That is a big mistake. No PKGBUILD uses or should use "/usr/etc". It should of course be "/etc/gromit/"
This is how the PKGBUILD "gromit-mpx" does it,
$ pacman -Ql gromit-mpx
25 build() { 26 cmake -B build -S gromit-mpx \ 27 -G 'Unix Makefiles' \ 28 -DCMAKE_BUILD_TYPE:STRING='None' \ 29 -DCMAKE_INSTALL_PREFIX:PATH='/usr' \ 30 -DCMAKE_INSTALL_SYSCONFDIR:PATH='/etc' \ 31 -Wno-dev 32 cmake --build build
```
aulonsal commented on 2021-05-25 14:41 (UTC) (edited on 2021-05-25 14:41 (UTC) by aulonsal)
Please explicitly specify the CMAKE Generator, 'Unix Makefiles', like so:
as the build as it is now fails if the system has another Generator set as the default.
yochananmarqos commented on 2020-12-11 23:57 (UTC)
You'll need to use the following build flag otherwise the config file ends up in
/usr/etc/
:wuestengecko commented on 2020-06-06 11:38 (UTC)
Please add
git
tomakedepends
, otherwise building in a clean chroot fails.schlegel11 commented on 2020-05-07 22:41 (UTC)
Behind a firewall etc. it would be great to add also https to git source in PKGBUILD. If someone is currently behind a firewall or the git port is blocked in general add https in PKGBUILD line 15 like: ... source=("git+https://github.com/bk138/gromit-mpx.git") ...
keenerd commented on 2017-02-03 06:00 (UTC)
micahscopes commented on 2017-02-02 22:22 (UTC)
E100 commented on 2016-12-05 08:02 (UTC)