summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: cd3bd36ac5aff2909473ea2d27ac511ae97b0cf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Maintainer: Zhaofeng Li <hello@zhaofeng.li>
# Contributor: Carlo Cabanilla <carlo.cabanilla@gmail.com>

pkgname=('python-pex')
pkgver=1.6.3
pkgrel=1
arch=('any')
pkgdesc="a tool for generating executable Python environments"
url="https://github.com/pantsbuild/pex"
license=('Apache 2.0')
depends=('python' 'python-setuptools' 'python-wheel')
source=("https://pypi.python.org/packages/source/p/pex/pex-${pkgver}.tar.gz")
md5sums=('2874f80c31414a75884bdf9ff3645472')

package() {
  cd "${srcdir}/pex-${pkgver}"
  python3 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
}