Files

55 lines
1.7 KiB
Tcl
Raw Permalink Normal View History

2022-08-20 20:40:17 -04:00
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
PortSystem 1.0
PortGroup golang 1.0
2024-09-21 22:40:57 -04:00
go.setup github.com/brimdata/zed 1.18.0 v
2024-04-10 09:17:57 -04:00
go.offline_build no
2022-08-20 20:40:17 -04:00
revision 0
subport zq {}
homepage https://zed.brimdata.io
description \
Tooling for super-structured data: a new and easier way to manipulate data
long_description \
2022-11-26 09:18:42 -05:00
{*}${description}. Zed offers a new approach to data that makes \
2022-08-20 20:40:17 -04:00
it easier to manipulate and manage your data. With Zed's new \
super-structured data model, messy JSON data can easily be given the \
fully-typed precision of relational tables without giving up JSON's \
uncanny ability to represent eclectic data.
categories textproc devel
installs_libs no
license BSD
maintainers {gmail.com:herby.gillot @herbygillot} \
openmaintainer
2024-09-21 22:40:57 -04:00
checksums rmd160 bf4b784a6ca79afca60796298760bfbe6633e70b \
sha256 ad26518d589f565a3859177066a2ad08f067910fa204a51436a55af837198175 \
size 6218528
2022-08-20 20:40:17 -04:00
build.cmd make
build.pre_args-append \
VERSION=${github.tag_prefix}${version}
build.args build
patch {
reinplace -E {s|VERSION =|VERSION ?=|} ${worksrcpath}/Makefile
}
if {${subport} eq ${name}} {
destroot {
2022-11-26 09:18:42 -05:00
foreach zbin {zed zc} {
2022-08-20 20:40:17 -04:00
xinstall -m 0755 \
${worksrcpath}/dist/${zbin} ${destroot}${prefix}/bin/
}
}
} else {
destroot {
xinstall -m 0755 ${worksrcpath}/dist/zq ${destroot}${prefix}/bin/
}
}