diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2011-03-28 21:09:09 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2011-03-28 21:09:09 +0000 |
commit | 4b116d86b609d7c668e573a691095bd61800b209 (patch) | |
tree | d296740b560f6c206de9ecf12f958415972787f6 /packages | |
parent | 4a9e0809848ca6867d1f635c57b95bea74d00868 (diff) |
install tcllib in the package since its needed for base64 for including images inline
svn path=/trunk/; revision=15052
Diffstat (limited to 'packages')
-rwxr-xr-x | packages/win32_inno/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/packages/win32_inno/Makefile b/packages/win32_inno/Makefile index 1c7535fb..f82ce7df 100755 --- a/packages/win32_inno/Makefile +++ b/packages/win32_inno/Makefile @@ -103,6 +103,13 @@ lib_install: cp -rp /usr/local/lib/reg1.2/* $(DESTDIR)$(libdir)/reg1.2 +# tcllib install +# tcllib is an old standard lib for Tcl written in Tcl, it includes things we +# need, like base64, so include it in the package on all platforms +tcllib_install: + install -d $(DESTDIR)$(libdir) + cp -a /usr/local/lib/tcllib1.13/* $(DESTDIR)$(libdir)/ + exe_install: install -d $(DESTDIR)$(bindir) install -p $(bin_src)/wish85.exe $(DESTDIR)$(bindir) |