blob: 033d5aae3c21c3830c1431ce976755aa642bcc25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
MAKEDEPS="python"
DEPS=""
PKG_VER=2021.3
SOURCE=https://files.pythonhosted.org/packages/e3/8e/1cde9d002f48a940b9d9d38820aaf444b229450c0854bdf15305ce4a3d1a/pytz-$PKG_VER.tar.gz
DESC="World timezone definitions, modern and historical"
build() {
python setup.py build
}
package () {
python setup.py install --root="$PKG_DEST" --optimize=1
}
|