mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 19:55:26 +03:00
this marginally increases install speed by not checking if it needs a rebuild. also remove --prefix=/usr as it defaults to /usr already. might break a build or two, will fix later
26 lines
747 B
Text
26 lines
747 B
Text
# Contributor: Duncan Bellamy <dunk@denkimushi.com>
|
|
# Maintainer: Duncan Bellamy <dunk@denkimushi.com>
|
|
pkgname=py3-pcodedmp
|
|
pkgver=1.2.6
|
|
pkgrel=2
|
|
pkgdesc="VBA p-code disassembler"
|
|
url="https://github.com/bontchev/pcodedmp"
|
|
arch="noarch"
|
|
license="GPL-3.0-only"
|
|
depends="python3"
|
|
makedepends="py3-setuptools"
|
|
source="https://files.pythonhosted.org/packages/source/p/pcodedmp/pcodedmp-$pkgver.tar.gz"
|
|
options="!check" #there are no tests
|
|
builddir="$srcdir/pcodedmp-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
bb8fb874b4140b517731b0de29b9ca1858d310d28c29806d224f6df59988d6bf8934756e14a8a9d913c665c469b23179a5edd10256c179d06d60a2a9f48fcabd pcodedmp-1.2.6.tar.gz
|
|
"
|