blob: 5bdb8973555e386faa96a982132d50464416ac86 (
plain)
1 # Description: Argparse with groups, commands, colors, and fuzzy matching
2 # URL: https://github.com/dephell/dephell_argparse
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: python3-setuptools
5
6 name=python3-dephell-argparse
7 version=0.1.3
8 release=1
9 source=(https://files.pythonhosted.org/packages/source/d/dephell_argparse/dephell_argparse-$version.tar.gz)
10
11 build() {
12 cd dephell_argparse-$version
13 /usr/bin/python3 setup.py build
14 /usr/bin/python3 setup.py install --prefix=/usr \
15 --root=$PKG \
16 -O1 \
17 --skip-build
18 }
|