blob: 1ba670e3ea8ab48cea755b44d9583fee07fe6985 (
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.7
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=('7c93c311881ed8dd59d5888e2c4823bee9943c32856ce12c0ae432aba95b7cf2')
build() {
cd "$pkgname-$pkgver"
make
}
package() {
cd "$pkgname-$pkgver"
cp -r usr "$pkgdir"
}
|