From e349021b1eff5167f8673147a58a7aaa2181f3ca Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 8 Aug 2017 14:24:47 -0400 Subject: Initial commit of pymssql (#48) --- pymssql/build.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 pymssql/build.sh (limited to 'pymssql/build.sh') diff --git a/pymssql/build.sh b/pymssql/build.sh new file mode 100644 index 0000000..e6f6701 --- /dev/null +++ b/pymssql/build.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +# Force regeneration of this since we patched out +# the usage of `DBVERSION_80` in src/_mssql.pyx +test -f _mssql.c && rm _mssql.c +$PYTHON setup.py build_ext -I ${PREFIX}/include -L ${PREFIX}/lib +$PYTHON setup.py install --single-version-externally-managed --record=record.txt -- cgit