Skip to content

Commit

Permalink
mint: new port
Browse files Browse the repository at this point in the history
  • Loading branch information
klanchman authored and mascguy committed Nov 30, 2021
1 parent 4fd0e5d commit cfc6d01
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions devel/mint/Portfile
@@ -0,0 +1,40 @@
# -*- 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 github 1.0

github.setup yonaskolb Mint 0.17.1
revision 0
github.tarball_from archive

name mint
categories devel
license MIT
platforms darwin
maintainers {kylelanchman.com:macports @klanchman} openmaintainer

description A package manager that installs and runs executable Swift packages
long_description {*}${description}

checksums rmd160 9e5d01ecb931cb17d88e29c146ebf2a4ba77b463 \
sha256 0e3ab23e548a752f6eee3a7b98d1c137a30371e4a0ec9212840baaa56741d2e4 \
size 23308

if {${os.platform} eq "darwin" && ${os.major} < 19} {
known_fail yes
pre-fetch {
ui_error "${name} requires macOS 10.15 or later."
return -code error "incompatible macOS version"
}
}

# Universal support enabled by default
universal_variant no

use_configure no
use_xcode yes

build.target install
build.args PREFIX="${destroot}${prefix}"

destroot {}

0 comments on commit cfc6d01

Please sign in to comment.