compile nano x2
Some checks failed
compile nano / compile-nano (push) Failing after 55s

This commit is contained in:
catmpeg 2026-02-19 17:44:34 +03:00
commit 75b55e4935

View file

@ -16,15 +16,17 @@ jobs:
- name: install packages and prepare source
run: |
pacman -Sy wget base-devel --noconfirm
wget https://www.nano-editor.org/dist/v8/nano-8.6.tar.xz
tar -xvf nano-8.6.tar.xz
wget https://www.nano-editor.org/dist/v8/nano-8.7.1.tar.xz
tar -xvf nano-8.7.1.tar.xz
- name: compile nano
run: |
cd nano-8.6
./configure --prefix=/usr \
cd nano-8.7.1
./configure --prefix=/usr \
--sysconfdir=/etc \
--enable-utf8
--enable-color \
--enable-nanorc \
--enable-multibuffer
make -j$(nproc)
make install