Add wip arch-portable system

This commit is contained in:
Tobias Reisinger 2023-01-13 17:17:54 +01:00
parent 63eafab885
commit a9682980d3
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
6 changed files with 75 additions and 0 deletions

56
arch-portable/PKGBUILD Normal file
View file

@ -0,0 +1,56 @@
# 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=(
"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=()
_sed_path() {
echo "$1" | sed -e "s/\//_/g"
}
_install() {
temp_pkg=$1
temp_src=$(_sed_path "$temp_pkg")
# shellcheck disable=SC2154
install "-Dm${2:-644}" "${srcdir}/${temp_src}" "${pkgdir}/${temp_pkg}"
}
package() {
_install "boot/loader/entries/portable.conf" "755"
_install "boot/loader/loader.conf" "755"
_install "etc/fstab"
_install "etc/hostname"
_install "etc/systemd/network/20-wired.network"
}
# vim: ft=sh