blob: 9543c894592bb34f36557fc6c0b76c7f005ff7f7 (
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: Shebang <himself@stevenpolley.net>
#
_themename=stellar
pkgname=sddm-${_themename}-theme
pkgver=0.1
pkgrel=2
pkgdesc='A minimalistic sddm greeter theme that features a milky way background, credential panel, session and layout manager.'
arch=('any')
url='https://github.com/sgerbino'
license=('Copyright Steve Gerbino')
makedepends=('git')
depends=('sddm')
source=("${pkgname}"::"git://github.com/sgerbino/stellar.git")
md5sums=('SKIP')
install="${pkgname}.install"
package() {
cd ${srcdir}
msg2 "Installing theme..."
mkdir -p ${pkgdir}/usr/share/sddm/themes
cp -R ${pkgname} ${pkgdir}/usr/share/sddm/themes
}
|