forked from kivy/python-for-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrecipe.sh
More file actions
33 lines (24 loc) · 669 Bytes
/
recipe.sh
File metadata and controls
33 lines (24 loc) · 669 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/bash
VERSION_sqlalchemy=${VERSION_sqlalchemy:-0.8.2}
DEPS_sqlalchemy=(python)
URL_sqlalchemy=https://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-${VERSION_sqlalchemy}.tar.gz
MD5_sqlalchemy=5a33fb43dea93468dbb2a6562ee80b54
BUILD_sqlalchemy=$BUILD_PATH/sqlalchemy/$(get_directory "${URL_sqlalchemy}")
RECIPE_sqlalchemy=$RECIPES_PATH/sqlalchemy
function prebuild_sqlalchemy() {
true
}
function shouldbuild_sqlalchemy() {
if [ -d "$SITEPACKAGES_PATH/sqlalchemy" ]; then
DO_BUILD=0
fi
}
function build_sqlalchemy() {
cd $BUILD_sqlalchemy
push_arm
try $HOSTPYTHON setup.py install -O2
pop_arm
}
function postbuild_sqlalchemy() {
true
}