blob: d18314395838c6287101af1c075091750d2eb4ee (
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-y-ru
pkgname=$_pkgname-git
pkgver=0.2
pkgrel=1
pkgdesc="Y-RU 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/y-ru
install -m 755 dock.theme $pkgdir/usr/share/plank/themes/y-ru/
}
|