Package Details: radare2-git 5.6.7.r27627.7821ddb04b-1

Git Clone URL: https://aur.archlinux.org/radare2-git.git (read-only, click to copy)
Package Base: radare2-git
Description: Open-source tools to disasm, debug, analyze and manipulate binary files
Upstream URL: http://radare.org
Licenses: GPL3, LGPL3
Conflicts: radare2
Provides: radare2
Submitter: l0gic
Maintainer: l0gic
Last Packager: l0gic
Votes: 37
Popularity: 0.000000
First Submitted: 2012-07-16 18:10 (UTC)
Last Updated: 2022-04-08 22:29 (UTC)

Required by (8)

Sources (1)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6

<deleted-account> commented on 2013-05-13 18:22 (UTC)

makedepends still states "mercurial" as dependency but not "git".

fnord0 commented on 2012-05-01 03:03 (UTC)

- getting an error = error "Only <glib.h> can be included directly." - I created a patch for your PKGBUILD that will fix the error, and allow the package to compile and install properly ;; --- radare-hg/PKGBUILD 2012-02-26 16:27:15.000000000 -0800 +++ ../PKGBUILD 2012-04-30 18:48:48.094572156 -0700 @@ -17,7 +17,7 @@ source=() md5sums=() -_hgroot="http://radare.org" +_hgroot="http://radare.org/hg" _hgrepo="radare" build() { @@ -56,6 +56,8 @@ sed -i -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" ./vala/grava/wscript_build sed -i -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" ./vala/wscript_build sed -i -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" ./wscript + sed -i -e "s|#include <glib/glist.h>|#include <glib.h>|" gui/*.c + sed -i -e "s|#include <glib/glist.h>|#include <glib.h>|" gui/*.c msg "Configuring..." ./configure --prefix=/usr

<deleted-account> commented on 2011-12-07 20:35 (UTC)

Thanks a lot.

l0gic commented on 2011-12-07 20:15 (UTC)

Should be fixed. Let me know if you run into any problems.

<deleted-account> commented on 2011-12-07 19:19 (UTC)

r2_bindings fail to build: <SNIP> checking pkg-config flags for r_core... no This package is required I'm pretty sure that's because r2_bindings configure script assumes that radare2 itself is already installed. Possibly there is a need to split these into two separate packages.

l0gic commented on 2010-08-17 11:28 (UTC)

Thanks for the fix.

<deleted-account> commented on 2010-08-17 11:06 (UTC)

Here are a few modifications to the PKGBUILD that allows me to build on both i686 and x86_64 using packer (was not the case before). if [ -e config-user.mk ]; then msg "Cleaning up old build..." make clean fi ==> Makefile is always present, while config-user.mk is present only after a "./configure". msg "Building..." export LDFLAGS="${LDFLAGS//-Wl,--as-needed}" make -j1 || return 1 ==> the linker flag "--as-needed" (added by makepkg, see /etc/makepkg.conf) makes linking fail. Removing it solves the problem. Tell me if this works for you, and update the PKGBUILD if this is the case.

l0gic commented on 2010-05-08 11:53 (UTC)

If it wouldn't work on my system I hadn't put it in the PKGBUILD. I guess the || return 1 is what's breaks it for you. make clean is needed, if you use i.e. yaourt, which keeps all sort of vcs builds to speed up checkouts. It happened in the past, that not running make clean broke the installation as some parts of r2 died with a segmentation fault. I updated the PKGBUILD, so pleas let me know if it works now.

<deleted-account> commented on 2010-05-07 14:06 (UTC)

radare2-hg installation fails because of the "make clean" line on my two arch computers. Removing it solves the problem. Does this PKGBUILD work on your computer ?