Integrated Treetap into Maple Linux #1

Merged
ahill merged 74 commits from treetap into main 2026-01-25 22:51:04 +00:00
2 changed files with 22 additions and 0 deletions
Showing only changes of commit 711917c872 - Show all commits

View File

@ -26,6 +26,7 @@ Definitions:
| `muon` | Yes | No | | `muon` | Yes | No |
| `musl` | Yes | Yes | | `musl` | Yes | Yes |
| `musl-fts` | Yes | Yes | | `musl-fts` | Yes | Yes |
| `nano` | Yes | Yes |
| `ncurses` | Yes | Yes | | `ncurses` | Yes | Yes |
| `perl` | Yes | Yes | | `perl` | Yes | Yes |
| `pkgconf` | Yes | Yes | | `pkgconf` | Yes | Yes |

21
sources/nano/nano.spec Normal file
View File

@ -0,0 +1,21 @@
# Maintainer: Alexander Hill <ahill@breadpudding.dev>
SRC_HASH="afd287aa672c48b8e1a93fdb6c6588453d527510d966822b687f2835f0d986e9"
SRC_NAME="nano"
SRC_URL="https://nano-editor.org/dist/v8/nano-8.7.tar.xz"
SRC_VERSION="8.7"
build() {
tar xf ../$SRC_FILENAME
cd nano-*/
./configure $TT_AUTOCONF_COMMON --enable-utf8 --enable-year2038
make -O -j $TT_PROCS
}
clean() {
rm -rf nano-*/
}
package() {
cd nano-*/
make -j $TT_PROCS install DESTDIR=$TT_INSTALLDIR
}