10000
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 c98bec6 commit 2acdd17Copy full SHA for 2acdd17
recipes/mysql_connector/recipe.sh
@@ -0,0 +1,26 @@
1
+#!/bin/bash
2
+
3
+VERSION_mysql_connector=1.0.7
4
+URL_mysql_connector=https://launchpad.net/debian/+archive/primary/+files/mysql-connector-python_$VERSION_mysql_connector.orig.tar.gz
5
+DEPS_mysql_connector=()
6
+MD5_mysql_connector=44c6b2c314c7ab7b7060484970b5ff23
7
+BUILD_mysql_connector=$BUILD_PATH/mysql_connector/$(get_directory $URL_mysql_connector)
8
+RECIPE_mysql_connector=$RECIPES_PATH/mysql_connector
9
10
+function prebuild_mysql_connector() {
11
+ true
12
+}
13
14
+function build_mysql_connector() {
15
+ cd $BUILD_mysql_connector
16
+ ls
17
+ push_arm
18
19
+ try $BUILD_PATH/python-install/bin/python.host setup.py install -O2
20
21
+ pop_arm
22
23
24
+function postbuild_mysql_connector() {
25
26
0 commit comments