summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 62c0617909a4470711a3c41a76c4779c306fe0f4 (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
# Maintainer: Avery Warddhana <them+arch _ nullablevo id au>

pkgname=python-qiling
_name=${pkgname#python-}
pkgver=1.4.5
pkgrel=1
pkgdesc="An advanced binary emulation framework"
url='https://qiling.io/'
arch=('any')
license=('GPL2')
depends=('python'
		 'python-capstone'
		 'python-unicorn'
		 'python-pefile'
		 'python-registry'
		 'python-keystone'
		 'python-pyelftools'
		 'python-gevent'
		 'python-multiprocess'
		 'python-yaml')
makedepends=('python-setuptools')
source=(https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz)
sha256sums=('30469fc6bcbf7b0aa5cce32ef5324c4287572c28463188d2da35f7cafec56499')

build() {
    cd "${_name}-${pkgver}"
    python setup.py build
}

package() {
    cd "${_name}-${pkgver}"
    python setup.py install --root="${pkgdir}" -O1 --skip-build
}

# vim:set et sw=4 sts=4 tw=80: