summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c0c89154a654ad0d761dedc7fbe743632ba6f0fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Maintainer: kpj <kpjkpjkpjkpjkpjkpj at gmail dot com>

pkgname='python-maybe'
pkgver=0.2.1
pkgrel=1
pkgdesc='See what a program does before deciding whether you really want it to happen.'
arch=('any')
url='https://github.com/p-e-w/maybe'
license=('GPLv3')
depends=('python-ptrace')
makedepends=('python' 'python-pip')

build() {
  pip install --no-deps --target='maybe' maybe
}

package() {
  mkdir -p $pkgdir/usr/lib/python3.5/site-packages/
  cp -r $srcdir/maybe/* $pkgdir/usr/lib/python3.5/site-packages/
}