systems/arch-portable/PKGBUILD

47 lines
797 B
Bash
Raw Normal View History

2023-01-13 16:17:54 +00:00
# Maintainer: Tobias Reisinger <tobias@msrg.cc>
# shellcheck disable=SC2034
2023-01-27 16:01:48 +00:00
pkgname=serguzim-system-portable
2023-01-13 16:17:54 +00:00
pkgver=1
pkgrel=1
epoch=
pkgdesc=""
arch=("any")
url="https://git.serguzim.me/serguzim/system"
license=("unknown")
groups=()
depends=(
2023-01-27 16:01:48 +00:00
#"intel-ucode"
2023-01-13 16:17:54 +00:00
2023-01-27 16:01:48 +00:00
#"amdgpu-fan"
#"xf86-video-amdgpu"
#"vulkan-radeon"
2023-01-13 16:17:54 +00:00
)
source=(
"boot_loader_entries_portable.conf"
"boot_loader_loader.conf"
"etc_fstab"
"etc_hostname"
"etc_systemd_network_20-wired.network"
)
sha256sums=(
"SKIP"
"SKIP"
"SKIP"
"SKIP"
"SKIP"
)
backup=()
2023-07-02 11:42:44 +00:00
. ../utils.sh
2023-01-13 16:17:54 +00:00
package() {
2023-07-02 11:42:44 +00:00
_system_install "boot/loader/entries/portable.conf" "755"
_system_install "boot/loader/loader.conf" "755"
2023-01-13 16:17:54 +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"
2023-01-13 16:17:54 +00:00
}
# vim: ft=sh