diff options
Diffstat (limited to 'system/tcl/APKBUILD')
-rw-r--r-- | system/tcl/APKBUILD | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/system/tcl/APKBUILD b/system/tcl/APKBUILD index 9bd27f90c..7b4097e9b 100644 --- a/system/tcl/APKBUILD +++ b/system/tcl/APKBUILD @@ -1,10 +1,10 @@ # Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net> -# Maintainer: +# Maintainer: Zach van Rijn <me@zv.io> pkgname=tcl -pkgver=8.6.9 +pkgver=8.6.13 pkgrel=0 pkgdesc="The Tcl scripting language" -url="http://tcl.sourceforge.net/" +url="https://tcl.sourceforge.net/" arch="all" license="TCL" depends="" @@ -33,7 +33,6 @@ build() { case "$CARCH" in x86_64) _64bit="--enable-64bit";; esac - cd "$builddir" ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -47,7 +46,6 @@ build() { } package() { - cd "$builddir" export LD_LIBRARY_PATH="$_builddir" make -j1 INSTALL_ROOT="${pkgdir}" install install-private-headers @@ -59,8 +57,6 @@ package() { } check() { - cd "$builddir" - # thread-4.5 and thread-5* is suppressed because it tests UB # http* is suppressed because it tries to do network i/o # unixInit-3* is suppressed due to hardcoded locale assumptions @@ -69,12 +65,12 @@ check() { dev() { default_dev - cd $pkgdir + cd "$pkgdir" for i in $(find . -name '*.c' -o -name '*Config.sh'); do mkdir -p "$subpkgdir"/${i%/*} mv $i "$subpkgdir"/${i%/*}/ || return 1 done } -sha512sums="707fc0fb4f45c85e8f21692e5035d727cde27d87a2e1cd2e748ad373ebd3517aeca25ecaef3382a2f0e0a1feff96ce94a62b87abcf085e1a0afe2a23ef460112 tcl8.6.9-src.tar.gz +sha512sums="b597f6b62fd71457e96445401a4f8aa662c2678de8a52127c60b0abddebf1fd4452ba5364420902a15b263c0118fc91167550fd1ad2d24fa4ab2204e372c027e tcl8.6.13-src.tar.gz cd52cbe80fd2be227c9018dbe38fa0888302293402e7a57f2e231c195b7c1902f1b58bc87d19c9d123915ca757e871abf084c0ef23b1a7f187bc03ba93904cc2 tcl-stat64.patch" |