# SPDX-License-Identifier: CC0-1.0 language = 'Fish' display = 'Fish (fish 4.0.2)' license = [ { name = 'GPL-2.0-only', url = 'https://github.com/fish-shell/fish-shell/blob/master/doc_src/license.rst' }, { name = 'PSF-2.0', url = 'https://github.com/fish-shell/fish-shell/blob/master/doc_src/license.rst' }, { name = 'MIT', url = 'https://github.com/fish-shell/fish-shell/blob/master/doc_src/license.rst' }, { name = 'LGPL-2.0-only', url = 'https://github.com/fish-shell/fish-shell/blob/master/doc_src/license.rst' }, ] filename = 'Main.fish' install = ''' sudo apt-get update sudo apt-get install -y --no-install-recommends software-properties-common sudo add-apt-repository -y ppa:fish-shell/release-4 sudo apt-get install -y --no-install-recommends fish fish --version ''' compile = ''' fish -n Main.fish && touch ok ''' object = 'ok' execution = [ 'fish', 'Main.fish', ]