mirror of
https://github.com/Snigdha-OS/snigdhaos-pkgbuilds.git
synced 2025-09-23 21:15:00 +02:00

Some checks are pending
Check Conventional Commit / check-commit-message (push) Waiting to run
22 lines
629 B
Bash
22 lines
629 B
Bash
# Maintainer: Eshan Roy <eshan@snigdhaos.org>
|
|
|
|
pkgname=snigdhaos-chrome-config
|
|
pkgver=1.0.0
|
|
pkgrel=1
|
|
pkgdesc="Configuration files for Google Chrome on Snigdha OS."
|
|
arch=('any')
|
|
license=('MIT')
|
|
depends=('snigdhaos-tabliss-config' 'google-chrome' 'profile-sync-daemon')
|
|
source=("psd.conf"
|
|
"google-chrome.tar.gz")
|
|
install="${pkgname}.install"
|
|
|
|
sha512sums=('SKIP'
|
|
'SKIP')
|
|
|
|
package() {
|
|
install -Dm755 "${srcdir}/psd.conf" "${pkgdir}/etc/skel/.config/psd/psd.conf"
|
|
|
|
install -dm 755 "${pkgdir}/etc/skel/.config/google-chrome"
|
|
cp -r "${srcdir}/google-chrome/"* "${pkgdir}/etc/skel/.config/google-chrome/"
|
|
} |