summaryrefslogtreecommitdiff
path: root/psibuilds/tcl.psibuild
diff options
context:
space:
mode:
Diffstat (limited to 'psibuilds/tcl.psibuild')
-rw-r--r--psibuilds/tcl.psibuild28
1 files changed, 0 insertions, 28 deletions
diff --git a/psibuilds/tcl.psibuild b/psibuilds/tcl.psibuild
deleted file mode 100644
index 16442f4..0000000
--- a/psibuilds/tcl.psibuild
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/bash
-
-DEPS=(zlib)
-
-SOURCE=https://github.com/tcltk/tcl
-
-
-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
-
-}
-
-