summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 553c1eda209e0110f6f67b907d9785f7992002db (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
# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.

# Maintainer: RinasSam <samkhaldoon2006@.com>
pkgname=ollydbg-bin
pkgver=2.01
pkgrel=1
pkgdesc="OllyDbg is a 32-bit assembler level analysing debugger for Microsoft® Windows®."
arch=(x86_64)
url="https://www.ollydbg.de/odbg200.zip"
license=('custom')
depends=(wine)
makedepends=(unzip)
optdepends=('winetricks: download fonts and other Windows components')
provides=(ollydbg)
source=("$url")
sha256sums=('93dfd6348323db33f2005fc1fb8ff795256ae91d464dd186adc29c4314ed647c')
noextract=()


prepare()
{
  	unzip odbg200.zip -d ./odbg
}

package() {
	mkdir -p "${pkgdir}/usr/share/ollydbg"
	
 	install -Dm755 odbg/ollydbg.exe "${pkgdir}/usr/share/ollydbg/ollydbg.exe"
	install -Dm755 ../ollydbg "${pkgdir}/usr/bin/ollydbg"
}