# license The `license` stanza is not free-form. A single value must be chosen from a list of valid symbols. The values for `license` are categories, rather than fully-specified licenses. For example, `:gpl` is a category; we do not distinguish between versions of the GPL. Similarly, `:cc` and `:bsd` comprise many variants. They must always pertain to the license of the software itself, not the vendor’s business model (a free app to access a paid service is still `:gratis`, not `:freemium`). The `license` stanza is intended as an aid to search/filtering of Casks. For full and complete information, the user must always rely on the vendor’s homepage. Note that `brew cask search` and `brew cask list` are not yet capable of using the information stored in the `license` stanza. ## Generic Category Licenses Cask authors should use the most specific license category which is also correct. Generic categories are provided for difficult cases. `:unknown` is also perfectly fine if you are unsure. Example: [Chromium](https://www.chromium.org/chromium-os/licenses) includes code with multiple licenses, all of which are open source. Chromium licensing is described by the generic category [`:oss`](https://github.com/caskroom/homebrew-cask/blob/54a79f7dcceea9a922a5b608ac99466b9d10a191/Casks/chromium.rb#L7). | symbol | meaning | | ----------- | ----------- | | `:oss` | open-source software | `:closed` | closed-source software | `:unknown` | license unknown | `:other` | license is known, but fits no category ## Valid Licenses | symbol | generic category | meaning | URL | | ---------------- | ---------------- | ------------------------------------------------------------------ | ----------- | | `:gratis` | `:closed` | free-to-use, closed source | | `:commercial` | `:closed` | not free to use | | `:freemium` | `:closed` | free-to-use, payment required for full or additional functionality | | `:affero` | `:oss` | Affero General Public License | | `:apache` | `:oss` | Apache Public License | | `:arphic` | `:oss` | Arphic Public License | | `:artistic` | `:oss` | Artistic License | | `:bsd` | `:oss` | BSD License | | `:cc` | `:oss` | Creative Commons License | | `:eclipse` | `:oss` | Eclipse Public License | | `:gpl` | `:oss` | GNU Public License | | `:isc` | `:oss` | Internet Systems Consortium License | | `:lppl` | `:oss` | LaTeX Project Public License | | `:ncsa` | `:oss` | University of Illinois/NCSA Open Source License | | `:mit` | `:oss` | MIT License | | `:mpl` | `:oss` | Mozilla Public License | | `:ofl` | `:oss` | SIL Open Font License | | `:public_domain` | `:oss` | not copyrighted | | `:ubuntu_font` | `:oss` | Ubuntu Font License | | `:x11` | `:oss` | X Consortium License |