🐛 fix: some minor lines has been deleted

This commit is contained in:
eshanized
2025-01-11 22:35:47 +05:30
parent fbe353c2fe
commit ec13e14618

View File

@@ -1,23 +1,22 @@
# Maintainer: Eshan Roy <eshan@snigdhaos.org> # Maintainer: Eshan Roy <eshan@snigdhaos.org>
pkgname=snigdhaos-chrome-config pkgname=snigdhaos-chrome-config
pkgver=1 pkgver=1.0.0
pkgrel=1 pkgrel=1
pkgdesc="Snigdha OS Google Chrome Config!." pkgdesc="Configuration files for Google Chrome on Snigdha OS."
arch=('any') arch=('any')
license=("MIT") license=('MIT')
depends=('snigdhaos-tabliss-config' 'google-chrome' 'profile-sync-daemon') depends=('snigdhaos-tabliss-config' 'google-chrome' 'profile-sync-daemon')
source=("psd.conf" source=("psd.conf"
"$pkgname.tar.gz") "google-chrome.tar.gz")
install="${pkgname}.install" install="${pkgname}.install"
package() {
install -dm 755 "${pkgdir}/etc/skel/.config"
install -dm 755 "${pkgdir}/etc/skel/.config/psd"
cp -rf "${srcdir}/google-chrome" "${pkgdir}/etc/skel/.config/"
cp -rf "${srcdir}/psd.conf" "${pkgdir}/etc/skel/.config/psd/"
}
sha512sums=('SKIP' sha512sums=('SKIP'
'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/"
}