Date: Sunday, January 8, 2023 @ 12:25:06
Author: arojas
Revision: 1382004
archrelease: copy trunk to community-staging-x86_64
Added:
iaito/repos/community-staging-x86_64/
iaito/repos/community-staging-x86_64/PKGBUILD
(from rev 1382003, iaito/trunk/PKGBUILD)
----------+
PKGBUILD | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 50 insertions(+)
Copied: iaito/repos/community-staging-x86_64/PKGBUILD (from rev 1382003,
iaito/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2023-01-08 12:25:06 UTC (rev 1382004)
@@ -0,0 +1,50 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Maintainer: Santiago Torres-Arias <santiago[at]archlinux[dot]org>
+# Contributor: Aaron McDaniel (mcd1992) <'aur' at the domain 'fgthou.se'>
+
+pkgname=iaito
+_gitcommit=cbf1992d78224f7e2a8ae7bd5701b759908a723f
+_transcommit=e66b3a962a7fc7dfd730764180011ecffbb206bf
+pkgver=5.8.0
+pkgrel=1
+pkgdesc='Qt and C++ GUI for radare2 reverse engineering framework'
+url='https://github.com/radareorg/iaito'
+arch=('x86_64')
+license=('GPL3')
+depends=('radare2' 'capstone' 'qt5-base' 'qt5-svg' 'qt5-webengine' 'icu'
'python'
+ 'pyside2' 'python-shiboken2' 'graphviz' 'gcc-libs'
'syntax-highlighting')
+makedepends=('git' 'shiboken2' 'qt5-tools')
+optdepends=('r2ghidra: ghidra decompiler plugin')
+replaces=('r2cutter')
+source=("git+https://github.com/radareorg/iaito#commit=${_gitcommit}"
+
"git+https://github.com/radareorg/iaito-translations#commit=${_transcommit}")
+sha512sums=('SKIP'
+ 'SKIP')
+b2sums=('SKIP'
+ 'SKIP')
+
+pkgver() {
+ cd iaito
+ git describe --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+prepare() {
+ cp -r iaito-translations iaito/src/translations
+}
+
+build() {
+ cd iaito
+ ./configure --prefix=/usr
+ mkdir build
+ cd build
+ qmake-qt5 ../src PREFIX=/usr
+ make
+}
+
+package() {
+ cd iaito
+ make -C build INSTALL_ROOT="$pkgdir" install
+ make DESTDIR="$pkgdir" PREFIX=/usr install-translations install-man
+}
+
+# vim: ts=2 sw=2 et: