diff options
author | Sam Burgos | 2017-04-16 16:10:17 -0600 |
---|---|---|
committer | Sam Burgos | 2017-04-16 16:10:17 -0600 |
commit | 0bce841df4e23624040e533b3997eb5d99aa7b3d (patch) | |
tree | 973bd875c757013ead56557ded4837b610d75d44 /PKGBUILD | |
download | aur-0bce841df4e23624040e533b3997eb5d99aa7b3d.tar.gz |
Initial commit
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 00000000000..6cc9b47a861 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,31 @@ +# Maintainer: Sam Burgos < sam dot burgos1089 at gmail dot com > + +pkgname='lightdm-settings' +pkgver=1.0.2 +pkgrel=1 +pkgdesc="A configuration tool for the LightDM display manager " +arch=('any') +url="http://packages.linuxmint.com/pool/main/l/${pkgname}" +license=('GPL3') +depends=('hicolor-icon-theme' 'lightdm' 'lsb-release' 'python-setproctitle' 'lightdm-slick-greeter' 'gksu') +source=("${url}/${pkgname}_${pkgver}.tar.xz") + #"org.x.lightdm-settings.policy") +sha256sums=('3ba404c48368d5f05ecd4e1da6a08dcb130bccc0fc9cb19a653c4fb345081dd7') + #'29ac7cb481565cca489075456b6fbb9dad084807b0ec373be2a76667d09bced9') + +prepare() { + cd ${pkgname} + # Changing gksu for pkexec + #sed -i 's/gksu/pkexec/g' "${pkgdir}/usr/bin/lightdm-settings" +} + +build() { + cd ${pkgname} + make +} + +package() { + cd ${pkgname} + cp -r usr "$pkgdir" + #install -m644 "${srcdir}/org.x.lightdm-settings.policy" "${pkgdir}/usr/share/polkit-1/actions/" +} |