add more packages, add .install
This commit is contained in:
parent
dfb0ec40dc
commit
985fb21217
13
PKGBUILD
13
PKGBUILD
|
@ -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'
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
post_install() {
|
||||||
|
# Enable systemd services
|
||||||
|
systemctl enable NetworkManager sddm
|
||||||
|
}
|
Loading…
Reference in New Issue