blob: 6a198411441cbfbf136f25cebc81e5f10169a969 (
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
25
|
# Maintainer: Drtan Samos <lashdu@drtan.twilightparadox.com>
pkgname=parabola-gnome
pkgver=1.0.1
pkgrel=1
pkgdesc="The Parabola defaults for GNOME"
arch=('any')
url="https://parabolagnulinux.org"
license=('GPL3')
options=('!emptydirs')
install=$pkgname.install
depends=('dbus-glib' 'parabola-artwork>=1.0' 'parabola-artwork<1.1')
source=("https://repo.parabolagnulinux.org/other/${pkgname}/${pkgname}-${pkgver}-${pkgrel}.tar.gz")
sha256sums=('9d78c93ea39da8561ff7c7eb822e8ea530609cc4991becae2d0741d2543f69d1')
package() {
cd ${srcdir}/${pkgname}-${pkgver}-${pkgrel}
install -d ${pkgdir}/usr/share/gnome-background-properties/
install -Dm644 gnome-background-properties/parabola.xml "${pkgdir}/usr/share/gnome-background-properties/"
install -Dm644 dconf/db/gdm.d/parabola "${pkgdir}/etc/dconf/db/gdm.d/$(date +%Y%m%d%H%M%S%N)"
install -Dm644 dconf/db/local.d/parabola "${pkgdir}/etc/dconf/db/local.d/$(date +%Y%m%d%H%M%S%N)"
install -d ${pkgdir}/etc/dconf/profile/
install -m644 dconf/profile/* "${pkgdir}/etc/dconf/profile/"
}
|