Files
chromebrew/packages/nano.rb
chromebrew-actions[bot] aaad9fd5c9 Nano 8.4 => 8.7 (#13816)
Co-authored-by: Ed Reel <edreel@gmail.com>
2025-12-12 09:23:47 +00:00

71 lines
1.9 KiB
Ruby

require 'buildsystems/autotools'
class Nano < Autotools
description 'Nano\'s ANOther editor, an enhanced free Pico clone.'
homepage 'https://www.nano-editor.org/'
version '8.7'
license 'GPL-3'
compatibility 'all'
source_url 'https://git.savannah.gnu.org/git/nano.git'
git_hashtag "v#{version}"
binary_compression 'tar.zst'
binary_sha256({
aarch64: '40dca9f30cf0d4ab22d5ed171343101f07cc0f9b23892c7b2d947455c6360dd6',
armv7l: '40dca9f30cf0d4ab22d5ed171343101f07cc0f9b23892c7b2d947455c6360dd6',
i686: '01efa2e719bd038a4fa8b346ff9fedda840d635940fb246574412beb14d51384',
x86_64: '2e6b2cfff04f9e91b782dce8ea4a4295664f097aab8934908da3d668f7aa9dfb'
})
depends_on 'filecmd' # R
depends_on 'glibc' # R
depends_on 'ncurses' # R
depends_on 'zlib' # R
autotools_configure_options '--enable-browser \
--enable-color \
--enable-comment \
--enable-extra \
--enable-help \
--enable-histories \
--enable-justify \
--enable-libmagic \
--enable-linenumbers \
--enable-mouse \
--enable-multibuffer \
--enable-nanorc \
--enable-nls \
--enable-operatingdir \
--enable-rpath \
--enable-speller \
--enable-tabcomp \
--enable-threads=posix \
--enable-utf8 \
--enable-wordcomp \
--enable-wrapping \
--enable-year2038'
autotools_build_extras do
open('nanorc', 'w') do |f|
f << "set constantshow\n"
f << "set fill 72\n"
f << "set historylog\n"
f << "set multibuffer\n"
f << "set nowrap\n"
f << "set positionlog\n"
f << "set historylog\n"
f << "set quickblank\n"
f << "set regexp\n"
f << "set suspend\n"
end
end
autotools_install_extras do
FileUtils.install 'nanorc', "#{CREW_DEST_HOME}/.nanorc", mode: 0o644
end
def self.postinstall
ExitMessage.add "\nPersonal configuration file is located in #{HOME}/.nanorc.\n".lightblue
end
end