diff options
author | jmarshallnz <jmarshallnz@svn> | 2010-07-05 04:11:26 +0000 |
---|---|---|
committer | jmarshallnz <jmarshallnz@svn> | 2010-07-05 04:11:26 +0000 |
commit | 95feee8dc75ba7c17894ee427462ecef93615073 (patch) | |
tree | 50facdfcb41a843c147ec19565c366c17c1042f8 /project | |
parent | 808c9ae8ec467484fa6e0d2e3863498a54462dac (diff) |
added: pysqlite addon module. Linux + OS/X need some makefile love to fetch + build this.
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@31632 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'project')
-rw-r--r-- | project/BuildDependencies/scripts/pysqlite_d.bat | 15 | ||||
-rw-r--r-- | project/BuildDependencies/scripts/pysqlite_d.txt | 2 |
2 files changed, 17 insertions, 0 deletions
diff --git a/project/BuildDependencies/scripts/pysqlite_d.bat b/project/BuildDependencies/scripts/pysqlite_d.bat new file mode 100644 index 0000000000..676065d23a --- /dev/null +++ b/project/BuildDependencies/scripts/pysqlite_d.bat @@ -0,0 +1,15 @@ +@ECHO OFF
+
+SET LOC_PATH=%CD%
+SET FILES=%LOC_PATH%\pysqlite_d.txt
+SET OUTDIR="%XBMC_PATH%\addons\script.module.pysqlite\lib\pysqlite2"
+
+CALL dlextract.bat pysqlite %FILES%
+
+IF EXIST %OUTDIR% rmdir %OUTDIR% /S /Q
+
+cd %TMP_PATH%
+
+xcopy PLATLIB\pysqlite2 %OUTDIR% /E /Q /I /Y
+
+cd %LOC_PATH%
diff --git a/project/BuildDependencies/scripts/pysqlite_d.txt b/project/BuildDependencies/scripts/pysqlite_d.txt new file mode 100644 index 0000000000..69e11d3d60 --- /dev/null +++ b/project/BuildDependencies/scripts/pysqlite_d.txt @@ -0,0 +1,2 @@ +; filename source of the file
+pysqlite-2.5.6.win32-py2.4.exe http://pysqlite.googlecode.com/files/
|