# -*- 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 go.setup github.com/git-lfs/git-lfs 3.5.1 v revision 0 maintainers {raimue @raimue} {judaew @judaew} \ openmaintainer categories devel description Git Large File Storage long_description {*}${description} is an extension for versioning large files homepage https://git-lfs.github.com/ license MIT checksums rmd160 673a2ead439efcda0b1ea4c3990592bfd6e5e4f8 \ sha256 ea3e61831aed55d7af275eec4aa61a0e28dc829302f2915bd1e08e7a9a8684fa \ size 684156 depends_build-append port:asciidoctor \ port:rb31-ronn-ng depends_run port:git if {${os.platform} eq "darwin" && ${os.major} < 16} { # requires clonefile(3), see https://trac.macports.org/ticket/60121 known_fail yes pre-fetch { ui_error "${name} requires macOS 10.12 or later." return -code error "incompatible OS version" } } use_configure no build.cmd make build.target bin/git-lfs man build.args RONN=${prefix}/bin/ronn-3.1 go.offline_build no destroot { set bindir ${destroot}${prefix}/bin xinstall -m 755 ${worksrcpath}/bin/git-lfs ${bindir} set mandir ${destroot}${prefix}/share/man/man1 set manfiles [glob ${worksrcpath}/man/man1/*.1] xinstall -m 644 {*}${manfiles} ${mandir} set mandir ${destroot}${prefix}/share/man/man5 set manfiles [glob ${worksrcpath}/man/man5/*.5] xinstall -m 644 {*}${manfiles} ${mandir} set docdir ${destroot}${prefix}/share/doc/${subport} xinstall -d ${docdir} set docfiles [glob ${worksrcpath}/man/html/*.html] xinstall -m 644 {*}${docfiles} ${docdir} }