blob: 8018219f8d9004b6f70e464f59cb8f1e44c3e682 (
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: zekeer <isoniasid@gmail.com>
pkgname=plank-theme-arc
pkgver=0.1
pkgrel=2
pkgdesc='Arc theme for Plank'
arch=('any')
url='https://github.com/horst3180/arc-theme'
license=('GPL3')
depends=('plank')
source=("https://manjaro.ru/aur/plank-theme/$pkgname.tar.gz")
md5sums=('60b567398e7e5afecba5ec6e2480994a')
build() {
true
}
package() {
cd $srcdir/$pkgname
mkdir -p $pkgdir/usr/share/plank/themes/Arc
install -m 755 Arc/dock.theme "${pkgdir}"/usr/share/plank/themes/Arc/
}
|