blob: db806abe2687603570a9ede578d3c9cbed3c112d (
plain)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# Maintainer: fatalis <fatalis@fatalis.pw>
pkgname=ida-free
pkgver=8.4.240527
pkgrel=2
pkgdesc="Freeware version of the world's smartest and most feature-full disassembler"
arch=('x86_64')
url='https://www.hex-rays.com/products/ida/'
license=('custom')
makedepends=('fakechroot')
options=('!strip')
_originalname='idafree84_linux.run'
_installer="${_originalname}-${pkgver}-${pkgrel}"
source=("${_installer}::https://web.archive.org/web/20240921184600if_/https://out7.hex-rays.com/files/${_originalname}"
'ida-free.desktop')
sha256sums=('941f228ce489bf0a14268980edad16140be297e0749245d7839a2a3b02070a62'
'55f2ed3f165df6efb5f7975b17d8e53bee1d88cad33efb9d4422402213d17440')
package() {
install -d "${pkgdir}"/opt/${pkgname}
install -d "${pkgdir}"/usr/bin
install -d "${pkgdir}"/usr/share/{icons,applications,licenses/${pkgname}}
install -d "${pkgdir}"/tmp
# chroot is needed to prevent the installer from creating a single file outside of prefix
# have to copy the installer due to chroot
cp "${srcdir}"/${_installer} "${pkgdir}"/
chmod +x "${pkgdir}"/${_installer}
fakechroot chroot "${pkgdir}" /${_installer} --mode unattended --prefix /opt/${pkgname} --installpassword ""
rm "${pkgdir}"/${_installer}
rm "${pkgdir}"/tmp/installbuilder_installer.log
rmdir "${pkgdir}"/tmp
# the installer needlessly makes a lot of files executable
find "${pkgdir}"/opt/${pkgname} -type f -exec chmod -x {} \;
# make dir permissions consistent with the 7.0 installer
find "${pkgdir}"/opt/${pkgname} -type d -exec chmod g-w {} \;
chmod +x "${pkgdir}"/opt/${pkgname}/{ida64,assistant}
rm "${pkgdir}"/opt/${pkgname}/{uninstall*,Uninstall*}
install "${srcdir}"/ida-free.desktop "${pkgdir}"/usr/share/applications
ln -s /opt/${pkgname}/appico64.png "${pkgdir}"/usr/share/icons/ida-free.png
ln -s /opt/${pkgname}/license.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
ln -s /opt/${pkgname}/ida64 "${pkgdir}"/usr/bin/ida64
}
|