blob: 1a3fab0b0cfbd4eca646328cafabf95d6e2abd2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
MAKEDEPS="python"
PKG_VER=2.4.0
SOURCE=https://files.pythonhosted.org/packages/source/s/sortedcontainers/sortedcontainers-$PKG_VER.tar.gz
MAKEDEPS="python"
DESC="Sorted Containers -- Sorted List, Sorted Dict, Sorted Set"
build() {
python setup.py build
}
package () {
python setup.py install --root="$PKG_DEST" --optimize=1
}
|