27 lines
539 B
Bash
Executable File
27 lines
539 B
Bash
Executable File
pkgname=tarch-install-scripts
|
|
pkgver=1.0
|
|
pkgrel=1
|
|
pkgdesc="Tarch OS install Scripts"
|
|
url="https://gitcast.ru/tarch_os/tarch-bin"
|
|
arch=("any")
|
|
license=("GPL3")
|
|
|
|
source=(
|
|
"chrooted_post_install.sh"
|
|
"post_install.sh"
|
|
"main_fix_autologin.sh"
|
|
)
|
|
|
|
sha512sums=(
|
|
"SKIP"
|
|
"SKIP"
|
|
"SKIP"
|
|
)
|
|
|
|
package() {
|
|
local bin=${pkgdir}/usr/bin
|
|
install -Dm755 chrooted_post_install.sh ${bin}/chrooted_post_install.sh
|
|
install -Dm755 post_install.sh ${bin}/post_install.sh
|
|
install -Dm755 main_fix_autologin.sh ${bin}/main_fix_autologin.sh
|
|
}
|