File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed
Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ VERSION_sqlalchemy=0.8.2
4+ DEPS_sqlalchemy=(python)
5+ URL_sqlalchemy=https://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-${VERSION_sqlalchemy} .tar.gz
6+ MD5_sqlalchemy=5a33fb43dea93468dbb2a6562ee80b54
7+ BUILD_sqlalchemy=$BUILD_PATH /sqlalchemy/$( get_directory " ${URL_sqlalchemy} " )
8+ RECIPE_sqlalchemy=$RECIPES_PATH /sqlalchemy
9+
10+ function prebuild_sqlalchemy() {
11+ true
12+ }
13+
14+
15+ function build_sqlalchemy() {
16+ if [ -d " $BUILD_PATH /python-install/lib/python2.7/site-packages/sqlalchemy" ]; then
17+ return
18+ fi
19+
20+ cd $BUILD_sqlalchemy
21+
22+ push_arm
23+
24+ try $BUILD_PATH /python-install/bin/python.host setup.py install -O2
25+
26+ pop_arm
27+ }
28+
29+
30+ function postbuild_sqlalchemy() {
31+ true
32+ }
You can’t perform that action at this time.
0 commit comments