summaryrefslogtreecommitdiff
path: root/tcl/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'tcl/Pkgfile')
-rw-r--r--tcl/Pkgfile22
1 files changed, 0 insertions, 22 deletions
diff --git a/tcl/Pkgfile b/tcl/Pkgfile
deleted file mode 100644
index 80d238a..0000000
--- a/tcl/Pkgfile
+++ /dev/null
@@ -1,22 +0,0 @@
1# Description: Tool Command Language, the language and library
2# URL: https://core.tcl-lang.org/tcl/
3# Maintainer: Shokara Kou, shokara at kalli dot st
4
5name=tcl
6version=8.6.12
7release=1
8source=(https://core.tcl-lang.org/$name/tarball/release/$name-$version.tar.gz)
9
10build() {
11 cd $name-$version/unix
12
13 ./configure \
14 --prefix=/usr
15 make
16 make DESTDIR=$PKG install
17
18 rm -fr $PKG/share/doc
19
20 cd $PKG/usr/bin
21 ln -s /usr/bin/tclsh8.6 tclsh
22}