21 lines
425 B
Bash
21 lines
425 B
Bash
|
pkgname=tarch-configs
|
||
|
pkgver=1.0
|
||
|
pkgrel=1
|
||
|
pkgdesc="Configs some App for Tarch OS"
|
||
|
arch=('any')
|
||
|
url="https://gitcast.ru/tarch_os/tarch-configs.git"
|
||
|
license=('GPL3')
|
||
|
install=${pkgname}.install
|
||
|
|
||
|
prepare() {
|
||
|
cp -af ../configs/. ${srcdir}
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
local CONFIG_DIR=${pkgdir}/etc/skel/.config
|
||
|
mkdir -p ${CONFIG_DIR}
|
||
|
cp -r ${srcdir}/* ${CONFIG_DIR}
|
||
|
|
||
|
install -Dm 644 ${srcdir}/mimeapps.list ${CONFIG_DIR}/mimeapps.list
|
||
|
}
|