diff options
author | jmarshallnz <jcmarsha@gmail.com> | 2013-12-23 16:44:25 -0800 |
---|---|---|
committer | jmarshallnz <jcmarsha@gmail.com> | 2013-12-23 16:44:25 -0800 |
commit | a8eb2a4560c6af722491aa31c2dc52551508e5da (patch) | |
tree | 7b3be034901be2e635f814451a158b45b54efbaf /project/BuildDependencies | |
parent | 3aaba198ca2396d653dfc5c1340590314fb16106 (diff) | |
parent | d2901f3f8f2a8944d636f756c8fb4cdf3aaf9612 (diff) |
Merge pull request #3758 from jmarshallnz/xslt_scraper
XSLT support in 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 |