Overview
Comment: | Ignore more parameters while building tcllux |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | f9d652be1428f5eaa345414d1f9a4d6acd8cb3e4 |
User & Date: | rkeene on 2019-08-26 14:27:08 |
Other Links: | manifest | tags |
Context
2019-09-17
| ||
16:16 | Add support for fetching the SDK over the API check-in: 2ec364d475 user: rkeene tags: trunk | |
2019-08-26
| ||
14:27 | Ignore more parameters while building tcllux check-in: f9d652be14 user: rkeene tags: trunk | |
14:16 | Add TclLuX check-in: 70b573a407 user: rkeene tags: trunk | |
Changes
Modified tcllux/build.sh from [075f500048] to [fa88feba81].
1 1 #! /usr/bin/env bash 2 2 3 3 # BuildCompatible: KitCreator 4 4 5 5 version='0.4' 6 6 url="https://chiselapp.com/user/stwo/repository/tcllux/uv/tcllux-${version}.tar.gz" 7 7 sha256='c4fecf6852b35089a8f6d0e1a6fe8feb70c5f7e9f4eb91ad6b4caa9c65c211fd' 8 -pkg_ignore_opts=(--enable-threads --disable-threads) 8 +pkg_ignore_opts=(--enable-threads --disable-threads --enable-kit-storage) 9 9 pkg_no_support_for_static='1' 10 10 11 11 function postinstall() { 12 12 ( 13 13 cd "${installdir}/lib" || exit 1 14 14 if [ -d 'tcl' ]; then 15 15 mv tcl/* . 16 16 rmdir tcl 17 17 fi 18 18 ) || return 1 19 19 }