forked from xbmc/xbmc-rbp
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added: Python Image Library addon module. Linux + OS/X need some make…
…file love to fetch + build this. git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@31631 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
- Loading branch information
jmarshallnz
committed
Jul 5, 2010
1 parent
2dbf963
commit 808c9ae
Showing
3 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<addon id="script.module.pil" | ||
name="Python Image Library" | ||
version="1.1.7" | ||
provider-name="PythonWare"> | ||
<requires> | ||
<import addon="xbmc.python" version="1.0"/> | ||
</requires> | ||
<extension point="xbmc.python.module" | ||
library="lib" /> | ||
<extension point="xbmc.addon.metadata"> | ||
<platform>all</platform> | ||
</extension> | ||
</addon> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
@ECHO OFF | ||
|
||
SET LOC_PATH=%CD% | ||
SET FILES=%LOC_PATH%\PIL_d.txt | ||
SET OUTDIR="%XBMC_PATH%\addons\script.module.pil\lib\PIL" | ||
|
||
CALL dlextract.bat PIL %FILES% | ||
|
||
IF EXIST %OUTDIR% rmdir %OUTDIR% /S /Q | ||
|
||
cd %TMP_PATH% | ||
|
||
xcopy PLATLIB\PIL %OUTDIR% /E /Q /I /Y | ||
|
||
cd %LOC_PATH% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
; filename source of the file | ||
PIL-1.1.7.win32-py2.4.exe http://effbot.org/media/downloads/ |