This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://github.com/macports/macports-ports/blob/master/devel/cctools/Portfile | |
curl -o cctools-921.tar.gz https://opensource.apple.com/tarballs/cctools/cctools-921.tar.gz | |
curl -o llvm-8.0.1.src.tar.xz https://github.com/llvm/llvm-project/releases/download/llvmorg-8.0.1/llvm-8.0.1.src.tar.xz | |
curl -o ld64-409.12.tar.gz https://opensource.apple.com/tarballs/ld64/ld64-409.12.tar.gz | |
tar xvf cctools-921.tar.gz | |
tar xvf llvm-8.0.1.src.tar.xz | |
tar xvf ld64-409.12.tar.gz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Homebrew build logs for nginx on Debian GNU/Linux 8.11 (jessie) | |
Build date: 2019-02-18 18:29:35 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Package inflection pluralizes and singularizes English nouns. | |
inflection.Plural("person") => "people" | |
inflection.Plural("Person") => "People" | |
inflection.Plural("PERSON") => "PEOPLE" | |
inflection.Singular("people") => "person" | |
inflection.Singular("People") => "Person" | |
inflection.Singular("PEOPLE") => "PERSON" |