[arch-commits] Commit in r2ghidra/repos (2 files)

Levente Polyak anthraxx at archlinux.org
Sat Jun 12 01:11:01 UTC 2021


    Date: Saturday, June 12, 2021 @ 01:11:01
  Author: anthraxx
Revision: 963049

archrelease: copy trunk to community-staging-x86_64

Added:
  r2ghidra/repos/community-staging-x86_64/
  r2ghidra/repos/community-staging-x86_64/PKGBUILD
    (from rev 963048, r2ghidra/trunk/PKGBUILD)

----------+
 PKGBUILD |   59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 59 insertions(+)

Copied: r2ghidra/repos/community-staging-x86_64/PKGBUILD (from rev 963048, r2ghidra/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2021-06-12 01:11:01 UTC (rev 963049)
@@ -0,0 +1,59 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+
+pkgname=r2ghidra
+_gitcommit=e9d8fafec4e9bec39cddc09c4415efb4da28ba93
+_ghidra_native=9d7f7d1d8aed8d2360e8efe7976ebb2bb1f1b399
+pkgver=5.3.0.r6.ge9d8fafe
+pkgrel=1
+pkgdesc='Deep ghidra decompiler integration for radare2 and iaito'
+url='https://github.com/radareorg/r2ghidra'
+arch=('x86_64')
+license=('LGPL3')
+depends=('radare2' 'glibc')
+makedepends=('git' 'cmake')
+provides=('radare2-r2ghidra')
+replaces=('r2ghidra-dec')
+source=("git+https://github.com/radareorg/r2ghidra#commit=${_gitcommit}"
+        "git+https://github.com/radareorg/ghidra-native.git#commit=${_ghidra_native}"
+        git+https://github.com/zeux/pugixml.git)
+sha512sums=('SKIP'
+            'SKIP'
+            'SKIP')
+
+pkgver() {
+  cd ${pkgname}
+  git describe --tags --match '5*' | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+prepare() {
+  cd ${pkgname}
+  git submodule init
+  git config submodule."third-party/pugixml".url "${srcdir}/pugixml"
+  git submodule update --recursive
+  # reproducible builds
+  sed '/git clone https/d' -i Makefile
+  ln -sf "${srcdir}/ghidra-native" ghidra-native
+}
+
+build() {
+  cd ${pkgname}
+  make ghidra/ghidra/Ghidra
+  cmake \
+    -B build \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DCMAKE_BUILD_TYPE=None \
+    -DBUILD_SLASPECS=ON
+  make -C build VERBOSE=1
+}
+
+package() {
+  cd ${pkgname}
+  make -C build -j1 DESTDIR="${pkgdir}" install
+  # move shared library into R2_LIBR_PLUGINS
+  r2version=$(r2 -version|grep radare2|sed -E 's/radare2 ([0-9\.]+) .*/\1/')
+  install -d "${pkgdir}/usr/lib/radare2"
+  mv "${pkgdir}/usr/lib/radare2/last" "${pkgdir}/usr/lib/radare2/${r2version}"
+  ln -s /usr/lib/radare2/${r2version} "${pkgdir}/usr/lib/radare2/last"
+}
+
+# vim: ts=2 sw=2 et:



More information about the arch-commits mailing list