Date: Saturday, December 3, 2022 @ 12:54:09
Author: arojas
Revision: 1356326
archrelease: copy trunk to community-staging-x86_64
Added:
iaito/repos/community-staging-x86_64/
iaito/repos/community-staging-x86_64/PKGBUILD
(from rev 1356325, iaito/trunk/PKGBUILD)
----------+
PKGBUILD | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 50 insertions(+)
Copied: iaito/repos/community-staging-x86_64/PKGBUILD (from rev 1356325,
iaito/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2022-12-03 12:54:09 UTC (rev 1356326)
@@ -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=cccaa3772a20f58f126c4c4747e9453543c6a043
+_transcommit=e66b3a962a7fc7dfd730764180011ecffbb206bf
+pkgver=5.7.8
+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: