mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
44dba213e5
* update(aspell) * update(pango) * update(binutils) * update(gawk) * 11 more
35 lines
773 B
YAML
35 lines
773 B
YAML
distributable:
|
|
url: https://prdownloads.sourceforge.net/tcl/tcl{{ version }}-src.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
url: https://sourceforge.net/projects/tcl/files/Tcl/
|
|
match: /files\/Tcl\/\d+\.\d+\.\d+\//
|
|
strip:
|
|
- /files\/Tcl\//
|
|
- /\//
|
|
|
|
build:
|
|
dependencies:
|
|
tea.xyz/gx/cc: c99
|
|
tea.xyz/gx/make: '*'
|
|
working-directory: unix
|
|
script: |
|
|
./configure --prefix={{ prefix }}
|
|
make --jobs {{ hw.concurrency }}
|
|
make install
|
|
make install-private-headers
|
|
|
|
cd {{prefix}}/bin
|
|
ln -s tclsh{{version.major}}.{{version.minor}} tclsh
|
|
test: make test
|
|
|
|
test:
|
|
script: test "$(echo 'puts "Hello, World!";' | tclsh)" = 'Hello, World!'
|
|
|
|
provides:
|
|
- bin/sqlite3_analyzer
|
|
- bin/tclsh{{version.major}}.{{version.minor}}
|
|
- bin/tclsh
|
|
|