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 23 additions and 1 deletions
Showing only changes of commit 1f99927f27 - Show all commits

View File

@ -48,7 +48,7 @@ Definitions:
| `nasm` | Yes | Yes | | `nasm` | Yes | Yes |
| `ncurses` | Yes | Yes | | `ncurses` | Yes | Yes |
| `nftables` | | `nftables` |
| `openrc` | | `openrc` | Yes | Yes |
| `patch` | Yes | Yes | | `patch` | Yes | Yes |
| `perl` | Yes | Yes | | `perl` | Yes | Yes |
| `pkgconf` | Yes | Yes | | `pkgconf` | Yes | Yes |

View File

@ -0,0 +1,22 @@
# Maintainer: Alexander Hill <ahill@breadpudding.dev>
SRC_FILENAME="openrc-0.63.tar.gz"
SRC_HASH="1b661016bd8cd4189be83b441dd7062c967b641fdc00f741e359e22d06857df8"
SRC_NAME="openrc"
SRC_URL="https://github.com/OpenRC/openrc/archive/refs/tags/0.63.tar.gz"
SRC_VERSION="0.63"
build() {
tar xf ../$SRC_FILENAME
cd openrc-$SRC_VERSION/
# TODO: Remove bash completions
muon setup $TT_MESON_COMMON \
-Dpam=false \
-Dzsh-completions=true \
build
muon samu -C build
}
package() {
cd openrc-$SRC_VERSION/
muon -C build install -d $TT_INSTALLDIR
}