blob: bbff336957663b4ae51eb32d1ae7ac6f5425c53c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/sh
MAKEDEPS="python"
PKG_VER=0.6.2
SOURCE=https://files.pythonhosted.org/packages/source/c/clikit/clikit-$PKG_VER.tar.gz
MAKEDEPS="python"
DEPS="pastel pylev"
DESC="CliKit is a group of utilities to build beautiful and testable command line interfaces."
build() {
python setup.py build
}
package () {
python setup.py install --root="$PKG_DEST" --optimize=1
}
|