systems/arch-portable/PKGBUILD

47 lines
797 B
Bash

# Maintainer: Tobias Reisinger <tobias@msrg.cc>
# shellcheck disable=SC2034
pkgname=serguzim-system-portable
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=(
"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=()
. ../utils.sh
package() {
_system_install "boot/loader/entries/portable.conf" "755"
_system_install "boot/loader/loader.conf" "755"
_system_install "etc/fstab"
_system_install "etc/hostname"
_system_install "etc/systemd/network/20-wired.network"
}
# vim: ft=sh