blob: c179800cc770ab2db73e8a452d9d56a10591da5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Maintainer: Drtan Samos <lashdu@drtan.twilightparadox.com>
pkgname=parabola-gnome
pkgver=1.0
pkgrel=6
pkgdesc="The GNOME configuration for Parabola GNU/Linux-libre"
arch=('any')
url="https://parabolagnulinux.org"
license=('GPL3')
install=$pkgname.install
depends=('dbus-glib' 'parabola-artwork>=1.0-4')
source=("https://repo.parabolagnulinux.org/other/${pkgname}/${pkgname}-${pkgver}-${pkgrel}.tar.gz")
sha256sums=('979ab611fdf9a9cddf97c7f6c646bf39df8765787b077ac0b836e75a67897a08')
package() {
cd ${srcdir}/${pkgname}-${pkgver}-${pkgrel}
install -d "${pkgdir}/usr/share/gnome-background-properties"
install -m644 gnome-background-properties/01-parabola.xml "${pkgdir}/usr/share/gnome-background-properties/"
install -d "${pkgdir}/etc/dconf/db/local.d"
install -m644 dconf/db/local.d/* "${pkgdir}/etc/dconf/db/local.d/"
install -d "${pkgdir}/etc/dconf/profile"
install -m644 dconf/profile/* "${pkgdir}/etc/dconf/profile/"
}
|