From 0a31fc2a959ea1230d07cfd837f5a9a945a7f80a Mon Sep 17 00:00:00 2001 From: davidovski Date: Wed, 6 Oct 2021 17:19:20 +0100 Subject: Initial commit, added core packages --- repo/core/tcl.xibuild | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 repo/core/tcl.xibuild (limited to 'repo/core/tcl.xibuild') diff --git a/repo/core/tcl.xibuild b/repo/core/tcl.xibuild new file mode 100644 index 0000000..d5d0f7e --- /dev/null +++ b/repo/core/tcl.xibuild @@ -0,0 +1,29 @@ +#!/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 + +} + + -- cgit v1.2.1