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

View File

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