blob: 60b0d6379ff0516a3a0119415574925f7c777351 (
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
25
26
27
28
29
30
31
32
|
# Maintainer: Santiago Burgos <santiago.burgos1089@gmail.com>
pkgname=lightdm-settings
pkgver=2.0.3
pkgrel=1
pkgdesc="A configuration tool for the LightDM display manager "
arch=('any')
url="https://github.com/linuxmint/${pkgname}"
license=('GPL3')
depends=(
'hicolor-icon-theme'
'lightdm-slick-greeter'
'polkit'
'python-gobject'
'python-setproctitle'
'python-xapp'
)
optdepends=(
'lightdm-guest: Enable guest session options'
)
source=("${pkgname}-${pkgver}.tar.gz::$url/archive/${pkgver}.tar.gz")
sha256sums=('3f39954a70bd2c14ee7d924c1edd8b0607941ea480193178374fe13b4e74b7d2')
build() {
cd "$pkgname-$pkgver"
make
}
package() {
cd "$pkgname-$pkgver"
cp -r usr "$pkgdir"
}
|