Skip to content

New recipe for mysql-connector-python! #71

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 8, 2012
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions recipes/mysql_connector/recipe.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#!/bin/bash

VERSION_mysql_connector=1.0.7
URL_mysql_connector=https://launchpad.net/debian/+archive/primary/+files/mysql-connector-python_$VERSION_mysql_connector.orig.tar.gz
DEPS_mysql_connector=()
MD5_mysql_connector=44c6b2c314c7ab7b7060484970b5ff23
BUILD_mysql_connector=$BUILD_PATH/mysql_connector/$(get_directory $URL_mysql_connector)
RECIPE_mysql_connector=$RECIPES_PATH/mysql_connector

function prebuild_mysql_connector() {
true
}

function build_mysql_connector() {
cd $BUILD_mysql_connector
ls
push_arm

try $BUILD_PATH/python-install/bin/python.host setup.py install -O2

pop_arm
}

function postbuild_mysql_connector() {
true
}