commit cb5e30fa4937e6da9cf0ef105320205f138ec53d Author: Toshaan Bharvani Date: Mon Oct 10 01:23:44 2022 +0200 initial package creation Signed-off-by: Toshaan Bharvani diff --git a/SOURCES/.gitkeeper b/SOURCES/.gitkeeper new file mode 100644 index 0000000..e69de29 diff --git a/SPECS/i3lock.spec b/SPECS/i3lock.spec new file mode 100644 index 0000000..7f852f1 --- /dev/null +++ b/SPECS/i3lock.spec @@ -0,0 +1,77 @@ +Name: i3lock +Version: 2.14.1 +Release: 1%{?dist} +Summary: Simple X display locker like slock +License: MIT +URL: https://i3wm.org/%{name}/ +Source0: %{URL}/%{name}-%{version}.tar.xz +Source1: %{URL}/%{name}-%{version}.tar.xz.asc +# Michael Stapelberg's GPG key: +Source2: gpgkey-424E14D703E7C6D43D9D6F364E7160ED4AC8EE1D.gpg +BuildRequires: gcc +BuildRequires: meson >= 0.45 +# from meson.build +BuildRequires: pkg-config +BuildRequires: pkgconfig(xcb) +BuildRequires: pkgconfig(xcb-xkb) +BuildRequires: pkgconfig(xcb-xinerama) +BuildRequires: pkgconfig(xcb-randr) +BuildRequires: pkgconfig(xcb-image) +BuildRequires: pkgconfig(xcb-event) +BuildRequires: pkgconfig(xcb-util) +BuildRequires: pkgconfig(xcb-atom) +BuildRequires: pkgconfig(xcb-xrm) +BuildRequires: pkgconfig(xkbcommon) >= 0.5.0 +BuildRequires: pkgconfig(xkbcommon-x11) >= 0.5.0 +BuildRequires: pkgconfig(cairo) >= 1.14.4 +# these don't provide pkg-config files +BuildRequires: libev-devel +BuildRequires: pam-devel +# gpg verification +BuildRequires: gnupg2 +BuildRequires: make + + +%description +i3lock is a simple screen locker like slock. After starting it, you will see a +white screen (you can configure the color/an image). You can return to your +screen by entering your password. + +Many little improvements have been made to i3lock over time: + +- i3lock forks, so you can combine it with an alias to suspend to RAM (run + "i3lock && echo mem > /sys/power/state" to get a locked screen after waking up + your computer from suspend to RAM) + +- You can specify either a background color or a PNG image which will be + displayed while your screen is locked. + +- You can specify whether i3lock should bell upon a wrong password. + +- i3lock uses PAM and therefore is compatible with LDAP etc. On OpenBSD i3lock + uses the bsd_auth(3) framework. + + +%prep +%{gpgverify} --keyring='%{SOURCE2}' --signature='%{SOURCE1}' --data='%{SOURCE0}' +%autosetup -p1 + + +%build +%meson +%meson_build + + +%install +%meson_install + + +%files +%doc CHANGELOG README* +%license LICENSE +%{_bindir}/%{name} +%{_sysconfdir}/pam.d/%{name} +%{_mandir}/man1/i3lock.1* + + +%changelog