blob: 6f3a7b5ac47f31fed50aac117b0016aa97398c34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: McQueen <clear3239@yahoo.com>
_pkgname=plank-theme-nordic-night
pkgname=$_pkgname-git
pkgver=0.2
pkgrel=1
pkgdesc="Nordic-Night theme for Plank"
arch=('any')
url='https://github.com/kennyh7279/plank-themes'
license=('GPL3')
depends=('plank')
makedepends=('git')
source=("$pkgname::git+https://github.com/MMcQueenGNU/$_pkgname.git")
sha256sums=('SKIP')
build() {
true
}
package() {
cd $srcdir/$pkgname
mkdir -p $pkgdir/usr/share/plank/themes/nordic-night
install -m 755 dock.theme $pkgdir/usr/share/plank/themes/nordic-night/
}
|