add more packages, add .install

This commit is contained in:
Elijah R 2024-03-01 23:32:55 -05:00
parent dfb0ec40dc
commit 985fb21217
2 changed files with 18 additions and 1 deletions

View File

@ -1,15 +1,26 @@
pkgname='kevinlinux-desktop'
pkgver=1.0.0
pkgver=1.0.1
pkgrel=1
epoch=
pkgdesc='Metapackage for the KevinLinux distribution'
arch=('any')
license=('MIT')
install='kevinlinux-desktop.install'
package() {
# The packages pulled into a KevinLinux distro
depends=(
# KevinLinux packages
'kevinlinux-branding'
# Networking
'networkmanager'
'nm-connection-editor'
'network-manager-applet'
# Desktop
'firefox'
'vlc'
'gimp'
# Display Manager
'sddm'
# MATE
'caja'
'marco'

View File

@ -0,0 +1,6 @@
#!/bin/bash
post_install() {
# Enable systemd services
systemctl enable NetworkManager sddm
}