systems/arch-portalo/PKGBUILD

53 lines
1 KiB
Bash
Raw Normal View History

2022-12-20 17:34:26 +00:00
# Maintainer: Tobias Reisinger <tobias@msrg.cc>
# shellcheck disable=SC2034
pkgname=serguzim-system-portalo
pkgver=1
pkgrel=1
epoch=
pkgdesc=""
arch=("any")
url="https://git.serguzim.me/serguzim/system"
license=("unknown")
groups=()
depends=(
"intel-ucode"
"amdgpu-fan"
"xf86-video-amdgpu"
"vulkan-radeon"
)
source=(
2023-01-13 16:14:45 +00:00
"boot_loader_entries_arch.conf"
"boot_loader_loader.conf"
2022-12-20 17:34:26 +00:00
"etc_fstab"
"etc_hostname"
"etc_systemd_network_20-wired.network"
"etc_systemd_system_ckb-next-daemon.service"
"etc_udev_rules.d_42-logitech-unify-permissions.rules"
)
sha256sums=(
"SKIP"
"SKIP"
"SKIP"
"SKIP"
"SKIP"
2023-01-13 16:14:45 +00:00
"SKIP"
"SKIP"
2022-12-20 17:34:26 +00:00
)
backup=()
2023-07-02 11:42:44 +00:00
. ../utils.sh
2022-12-20 17:34:26 +00:00
package() {
2023-07-02 11:42:44 +00:00
_system_install "boot/loader/entries/arch.conf" "755"
_system_install "boot/loader/loader.conf" "755"
2023-01-13 16:14:45 +00:00
2023-07-02 11:42:44 +00:00
_system_install "etc/fstab"
_system_install "etc/hostname"
_system_install "etc/systemd/network/20-wired.network"
_system_install "etc/systemd/system/ckb-next-daemon.service"
_system_install "etc/udev/rules.d/42-logitech-unify-permissions.rules"
2022-12-20 17:34:26 +00:00
}
# vim: ft=sh