summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8d7990cb97cdf4b3d70e39887b7af7c3fbf64357 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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')
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/
}