summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 811b5f3ec22cd5a7c50366b82fdbcf633f6ec0c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: Robert Brzozowski <robson75@linux.pl>

pkgname=darkcold
pkgver=5.0
pkgrel=1
pkgdesc="GTK+ dark theme"
arch=('any')
url="https://github.com/originalseed/darkcold"
license=('GPL')
depends=('gtk2' 'gtk3')

source=("https://github.com/robson-66/DarkCold/archive/refs/heads/master.zip")
sha256sums=('SKIP')

package() {
 mkdir -p "$pkgdir"/usr/share/themes/
  cp -R "$srcdir"/DarkCold*/ "$pkgdir"/usr/share/themes/DarkCold/
  
  find $pkgdir/usr -type f -exec chmod 644 {} \;
  find $pkgdir/usr -type d -exec chmod 755 {} \;
  find $pkgdir/usr -type f -name '.directory' -delete
}