We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d53ec1 commit 948dcbdCopy full SHA for 948dcbd
recipes/sqlalchemy/recipe.sh
@@ -0,0 +1,32 @@
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
32
0 commit comments