summaryrefslogtreecommitdiff
path: root/xibuilds/tcl.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2021-10-06 17:18:43 +0100
committerdavidovski <david@davidovski.xyz>2021-10-06 17:18:43 +0100
commitc25b6890891c7ef34e129c8c54efdf2993234aa0 (patch)
treeefce372f0cfbcdb2e4285ef65191cbbf1e3146e1 /xibuilds/tcl.xibuild
parentd4cb1386d79c95e7586e7bccad5b0f6c7861cfe8 (diff)
moved xibuilds to another repo
Diffstat (limited to 'xibuilds/tcl.xibuild')
-rw-r--r--xibuilds/tcl.xibuild29
1 files changed, 0 insertions, 29 deletions
diff --git a/xibuilds/tcl.xibuild b/xibuilds/tcl.xibuild
deleted file mode 100644
index d5d0f7e..0000000
--- a/xibuilds/tcl.xibuild
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/bash
-
-DEPS=(zlib)
-
-SOURCE=https://github.com/tcltk/tcl
-DESC="the Tool Command language, a robust general purpose scripting language"
-
-
-build () {
- SRCDIR=$(pwd)
- cd unix
- ./configure --prefix=/usr --mandir=/usr/share/man $([ "$(uname -m)" = x86_64 ] && echo --enable-64bit)
-
- make test
-
- make DESTDIR=$PKG_DEST install
-
- chmod -v u+w $PKG_DEST/usr/lib/libtcl8.6.so
-
- make DESTDIR=$PKG_DEST install-private-headers
-}
-
-package () {
- cp -f tclsh8.6 $PKG_DEST/usr/bin/tclsh
- mv $PKG_DEST/usr/share/man/man3/{Thread,Tcl_Thread}.3
-
-}
-
-