diff options
Diffstat (limited to 'binaryninja/PKGBUILD')
-rw-r--r-- | binaryninja/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/binaryninja/PKGBUILD b/binaryninja/PKGBUILD new file mode 100644 index 0000000..8d19a2c --- /dev/null +++ b/binaryninja/PKGBUILD @@ -0,0 +1,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/" +} |