Package Details: imhex-git 1.31.0.r53.g5a71cc2d-1

Git Clone URL: https://aur.archlinux.org/imhex-git.git (read-only, click to copy)
Package Base: imhex-git
Description: A Hex Editor for Reverse Engineers, Programmers and people that value their eye sight when working at 3 AM
Upstream URL: https://imhex.werwolv.net
Licenses: GPL2
Conflicts: imhex, imhex-patterns-git
Provides: imhex, imhex-patterns
Submitter: saruman9
Maintainer: iTrooz
Last Packager: iTrooz
Votes: 2
Popularity: 0.003340
First Submitted: 2020-12-04 08:54 (UTC)
Last Updated: 2023-10-13 13:54 (UTC)

Required by (0)

Sources (11)

Latest Comments

DCNick3 commented on 2023-12-15 19:00 (UTC)

Fails to build again: fatal: no such section: submodule.lib/external/fmt

iTrooz commented on 2023-10-13 14:08 (UTC)

Fixed

peelz commented on 2023-07-29 16:04 (UTC)

Fails to build: fatal: no such section: submodule.lib/external/curl

iTrooz commented on 2022-11-22 21:58 (UTC) (edited on 2022-11-22 21:59 (UTC) by iTrooz)

Note : the package is now "fixed", I copied and modified the PKGBUILD from https://aur.archlinux.org/packages/imhex with the authorization of the author

arrtoletto commented on 2022-10-03 15:09 (UTC)

I've encountered both of the problems mentioned by iTrooz (-j flag) and jeliebig.

Currently, I needed 25 gigs of RAM to do that (I didn't check for PKGBUILD ignoring makepkg.conf)

iTrooz commented on 2022-09-08 01:12 (UTC)

Hey, shouldn't the -j flag for make be set by the users themselves in /etc/makepkg.conf, instead of directly in the PKGBUILD ? The infinite concurrent jobs are making my system crash , am I the only one in this case ?

jeliebig commented on 2022-07-03 14:09 (UTC)

For a few commits now builtin.hexplug has not been created at the path build/plugins/builtin/builtin.hexplug, but at his new path: build/plugins/builtin.hexplug.

Could you update the PKGBUILD to reflect this change?

To successfully install the package at the moment, I'm using this patch:

--- a/PKGBUILD
+++ b/PKGBUILD
@@ -31,6 +31,6 @@ build() {
 package() {
   cd "$pkgname"
   install -DTm755 build/lib/libimhex/libimhex.so "${pkgdir}/usr/lib/libimhex.so"
-  install -Dm755 build/plugins/builtin/builtin.hexplug "${pkgdir}/usr/bin/plugins/builtin.hexplug"
+  install -Dm755 build/plugins/builtin.hexplug "${pkgdir}/usr/bin/plugins/builtin.hexplug"
   install -DTm755 build/imhex "${pkgdir}/usr/bin/imhex"
 }