summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorAlfredo Ramos2015-10-17 06:13:31 -0500
committerAlfredo Ramos2015-10-17 06:13:31 -0500
commitad69c97493438ad38a9b76f9e6b9868134bc7f76 (patch)
tree4c889737e3296c25ea27559f66c9ff84533acd8f /PKGBUILD
parentdfeddbb3ef6b2513f047f3acbaf85fda9ea8065b (diff)
downloadaur-ad69c97493438ad38a9b76f9e6b9868134bc7f76.tar.gz
Password field focus fix
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD12
1 files changed, 10 insertions, 2 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 909dbef42a4d..e46f6e147e9f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
_themename=urbanlifestyle
pkgname=sddm-${_themename}-theme
pkgver=0.1.7
-pkgrel=2
+pkgrel=3
pkgdesc='A simple and colorful SDDM theme.'
arch=('any')
url='https://github.com/AlfredoRamos/sddm-urbanlifestyle-theme'
@@ -17,15 +17,23 @@ install=${pkgname}.install
source=(
"${_themename}-${pkgver}.tar.gz::https://github.com/AlfredoRamos/${pkgname}/archive/${pkgver}.tar.gz"
"${pkgname}.install"
+ 'password_focus_fix.patch'
)
sha512sums=(
'c571c8c7a62e92d969ea7fe93ceef22e35a88c7b279b77548a1978526dffdbfe3453cf53c44de4f0894eb61e5ccdfa62bffa80fe98e9e3a5c943ace231246b15'
'82e45735be3ff5fe1a87b0df7be702bc4e9b887a3239490d5b7a41587792cd32f05cdac616b93ab18170b9c3c1ed06f85d07328f7ddf2ef818dab80f4374c8a2'
+ 'bf19ec9b06bf0c9c1d21dc4f4470d3118f42d314d851062f167e34ad78caf0cd082c800ed38ad01aadf7f9ba7f526b4fd356d87df3542fe7063169a89abbe2e7'
)
+prepare() {
+ # Password focus fix
+ cd ${srcdir}/${pkgname}-${pkgver}
+ patch urbanlifestyle/Main.qml ../password_focus_fix.patch
+}
+
package() {
# Installing theme
cd ${srcdir}/${pkgname}-${pkgver}
mkdir -p ${pkgdir}/usr/share/sddm/themes
cp -R ${_themename} ${pkgdir}/usr/share/sddm/themes
-}
+} \ No newline at end of file