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 - name: install packages and prepare source
run: | run: |
pacman -Sy wget base-devel --noconfirm pacman -Sy wget base-devel --noconfirm
wget https://www.nano-editor.org/dist/v8/nano-8.6.tar.xz wget https://www.nano-editor.org/dist/v8/nano-8.7.1.tar.xz
tar -xvf nano-8.6.tar.xz tar -xvf nano-8.7.1.tar.xz
- name: compile nano - name: compile nano
run: | run: |
cd nano-8.6 cd nano-8.7.1
./configure --prefix=/usr \ ./configure --prefix=/usr \
--sysconfdir=/etc \ --sysconfdir=/etc \
--enable-utf8 --enable-color \
--enable-nanorc \
--enable-multibuffer
make -j$(nproc) make -j$(nproc)
make install make install