blob: 8d19a2ca8515c46929c7e594caa5d13ac169c6e6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
pkgname=binaryninja
pkgver=5.0.7648
pkgrel=1
pkgdesc="An interactive decompiler, disassembler, debugger, and binary analysis platform. This package is for the Personal Edition and requires both an installer zip (x86 or ARM) and a license."
arch=('x86_64' 'arm')
url="https://binary.ninja"
license=('custom:Binary Ninja License Agreement')
depends=(
'python' 'glibc' 'glib2' 'gcc-libs-multilib' 'pcre' 'zlib'
'libssh2' 'libnghttp2' 'libpsl' 'libxcb' 'icu' 'keyutils'
'libxext' 'libx11' 'libglvnd' 'krb5' 'e2fsprogs' 'libffi'
'libxau' 'libxdmcp' 'libcurl-compat' 'openssl' 'qt5-base'
)
optdepends=('gtk-update-icon-cache: icon support')
provides=(binaryninja)
source=(
"${pkgname}.png"
"${pkgname}.desktop"
)
sha256sums=('SKIP'
'SKIP')
package() {
install -d "${pkgdir}"/usr/share/{icons,applications}
install -m644 "${srcdir}/${pkgname}.png" "${pkgdir}/usr/share/icons/"
install -m644 "${srcdir}/${pkgname}.desktop" "${pkgdir}/usr/share/applications/"
}
|