57 lines
959 B
Text
57 lines
959 B
Text
|
# 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
|