🎉 init
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
JMARyA 2025-04-07 22:16:37 +02:00
commit eb23889ab7
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
2 changed files with 64 additions and 0 deletions

15
.woodpecker/build.yml Normal file
View file

@ -0,0 +1,15 @@
when:
- event: push
branch: main
steps:
- name: "PKGBUILD"
image: git.hydrar.de/jmarya/pacco-build:latest
commands:
- pacman -Syu --noconfirm
- buildpkg navos any pac.hydrar.de "$TOKEN" "$KEY"
environment:
TOKEN:
from_secret: pacco_token
KEY:
from_secret: navos_key

49
PKGBUILD Normal file
View file

@ -0,0 +1,49 @@
pkgbase=navos_meta
pkgname=('navos_desktop' 'navos_server')
pkgver=1.0.0
pkgrel=1
arch=('any')
license=('MIT')
url="https://git.hydrar.de/navos"
source=()
sha256sums=()
package_navos_desktop() {
pkgdesc="Meta package for navOS Desktop"
depends=(
# Desktop
'plasma'
'sddm'
# Sound
'pipewire'
'pipewire-alsa'
'pipewire-pulse'
'pipewire-jack'
'wireplumber'
# Applications
'konsole'
'dolphin'
'ffmpegthumbs'
'kate'
'okular'
'gwenview'
'ark'
'flatpak'
# Misc
'navos'
'man'
)
arch=('any')
}
package_navos_server() {
pkgdesc="Meta package for navOS Server"
depends=(
'tmux'
'navos'
)
arch=('any')
}