blob: a72f822feb8efd813d261066d9c1b17f4ff1b8b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Description: The Tcl Library, a kitchen-sink of packages
# URL: https://core.tcl-lang.org/tcllib/
# Maintainer: Shokara Kou, shokara at kalli dot st
# Depends on: tcl
name=tcllib
version=1.20
release=1
source=(https://core.tcl-lang.org/$name/uv/$name-$version.tar.xz)
build() {
cd $name-$version
./configure \
--prefix=/usr
make
make DESTDIR=$PKG install
}
|