diff options
author | night199uk <night199uk@xbmc.org> | 2013-05-05 04:32:42 +0800 |
---|---|---|
committer | Jonathan Marshall <jmarshall@xbmc.org> | 2013-12-22 13:27:23 +1300 |
commit | 68e14beace458c7e1b5735e1b6305e653c27e676 (patch) | |
tree | 936d1bc31ab8ee44f31b55243d7ecdc1546764c4 /project/BuildDependencies | |
parent | e13564c7e86349dc3207054b171ddf0cca3802ac (diff) |
[scrapers] Support XSLT transforms (XML->XML) in the scrapers
Diffstat (limited to 'project/BuildDependencies')
-rw-r--r-- | project/BuildDependencies/scripts/libxml2_d.bat | 15 | ||||
-rw-r--r-- | project/BuildDependencies/scripts/libxml2_d.txt | 2 | ||||
-rw-r--r-- | project/BuildDependencies/scripts/libxslt_d.bat | 15 | ||||
-rw-r--r-- | project/BuildDependencies/scripts/libxslt_d.txt | 2 |
4 files changed, 34 insertions, 0 deletions
diff --git a/project/BuildDependencies/scripts/libxml2_d.bat b/project/BuildDependencies/scripts/libxml2_d.bat new file mode 100644 index 0000000000..54605254ff --- /dev/null +++ b/project/BuildDependencies/scripts/libxml2_d.bat @@ -0,0 +1,15 @@ +@ECHO ON +rem libxml2 is needed by libxslt + +SET LOC_PATH=%CD% +SET FILES=%LOC_PATH%\libxml2_d.txt + +CALL dlextract.bat libxml2 %FILES% + +cd %TMP_PATH% + +echo readme.txt > libxml2_exclude.txt + +xcopy libxml2-2.7.8-win32\* "%XBMC_PATH%\" /E /Q /I /Y /EXCLUDE:libxml2_exclude.txt + +cd %LOC_PATH% diff --git a/project/BuildDependencies/scripts/libxml2_d.txt b/project/BuildDependencies/scripts/libxml2_d.txt new file mode 100644 index 0000000000..ab83b9d1ae --- /dev/null +++ b/project/BuildDependencies/scripts/libxml2_d.txt @@ -0,0 +1,2 @@ +; filename source of the file +libxml2-2.7.8-win32.7z http://mirrors.xbmc.org/build-deps/win32/ diff --git a/project/BuildDependencies/scripts/libxslt_d.bat b/project/BuildDependencies/scripts/libxslt_d.bat new file mode 100644 index 0000000000..f61128b61a --- /dev/null +++ b/project/BuildDependencies/scripts/libxslt_d.bat @@ -0,0 +1,15 @@ +@ECHO OFF +rem libxslt depends on libxml2 + +SET LOC_PATH=%CD% +SET FILES=%LOC_PATH%\libxslt_d.txt + +CALL dlextract.bat libxslt %FILES% + +cd %TMP_PATH% + +echo readme.txt > libxslt_exclude.txt + +xcopy libxslt-1.1.26-win32\* "%XBMC_PATH%\" /E /Q /I /Y /EXCLUDE:libxslt_exclude.txt + +cd %LOC_PATH% diff --git a/project/BuildDependencies/scripts/libxslt_d.txt b/project/BuildDependencies/scripts/libxslt_d.txt new file mode 100644 index 0000000000..df6eb163da --- /dev/null +++ b/project/BuildDependencies/scripts/libxslt_d.txt @@ -0,0 +1,2 @@ +; filename mirror of the file +libxslt-1.1.26-win32.7z http://mirrors.xbmc.org/build-deps/win32/
\ No newline at end of file |