blob: e1c4a19f974aca6705e50b1d2b5f1206fa0bd16d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
MAKEDEPS="python"
DEPS=""
PKG_VER=1.0.2
SOURCE=https://files.pythonhosted.org/packages/9f/01/ad9d4ebbceddbed9979ab4a89ddb78c9760e74e6757b1880f1b2760e8295/sphinxcontrib-applehelp-$PKG_VER.tar.gz
DESC="sphinxcontrib-applehelp is a sphinx extension which outputs Apple help books"
build() {
python setup.py build
}
package () {
python setup.py install --root="$PKG_DEST" --optimize=1
}
|