blob: 6fe9bd493193b3c6b1bba051fc8f63025438b001 (
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: Alan Hardman <alan@phpizza.com>
pkgname=adwaita-xfce-theme-git
pkgver=1.0
pkgrel=1
pkgdesc='A Modified Adwaita GTK Theme, designed and optimized for Xfce.'
arch=('any')
url='https://github.com/thearakattack/adwaita-xfce'
license=('GPL2')
depends=('xfwm4')
makedepends=('git')
optdepends=('xfdesktop: The Xfce desktop')
provides=('adwaita-xfce-theme')
conflicts=('adwaita-xfce-theme')
source=('git+https://github.com/thearakattack/adwaita-xfce.git')
sha256sums=('SKIP')
package() {
cd adwaita-xfce
install -dm755 $pkgdir/usr/share/themes
cp -R * $pkgdir/usr/share/themes/
rm $pkgdir/usr/share/themes/README.md
}
|