2021-01-22 19:44:05 +03:00
|
|
|
#!/usr/bin/env -S bash ../.port_include.sh
|
2019-10-02 22:50:20 +03:00
|
|
|
port=tinycc
|
|
|
|
version=dev
|
2021-04-25 13:20:15 +03:00
|
|
|
files="https://github.com/TinyCC/tinycc/archive/dev.tar.gz tinycc-dev.tar.gz 1e16fd9926e8e2662a35c790b7c56e8e7e8769c6a8a86a59a534c26046d0d83e"
|
|
|
|
auth_type=sha256
|
2019-10-02 22:50:20 +03:00
|
|
|
useconfigure=true
|
2021-09-27 01:16:18 +03:00
|
|
|
makeopts=("tcc")
|
2019-10-02 22:50:20 +03:00
|
|
|
|
|
|
|
configure() {
|
2021-03-11 23:58:18 +03:00
|
|
|
run ./configure \
|
|
|
|
--cross-prefix="${SERENITY_ARCH}-pc-serenity-" \
|
|
|
|
--cpu="${SERENITY_ARCH}" \
|
|
|
|
--triplet="${SERENITY_ARCH}-pc-serenity" \
|
|
|
|
--crtprefix=/usr/lib
|
2019-10-02 22:50:20 +03:00
|
|
|
}
|