From dafb69ccd3964d54cf8fa3e9d135a4d55c02950f Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 29 Jun 2024 12:18:04 +0200 Subject: [PATCH] package created using the webbuild interface [release 3.10.2-1mamba;Fri Jun 28 2024] --- README.md | 2 ++ feh.spec | 62 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 64 insertions(+) create mode 100644 feh.spec diff --git a/README.md b/README.md index 3d8fe9b..0a25aea 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # feh +feh is a light-weight, configurable and versatile image viewer. It is aimed at command line users, but can also be started from graphical file managers. Apart from viewing images, it can compile text and thumbnail listings, show (un)loadable files, set X11 backgrounds, and more. + diff --git a/feh.spec b/feh.spec new file mode 100644 index 0000000..534dcea --- /dev/null +++ b/feh.spec @@ -0,0 +1,62 @@ +Name: feh +Version: 3.10.2 +Release: 1mamba +Summary: A fast and light image viewer +Group: Graphical Desktop/Applications/Graphics +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://feh.finalrewind.org/ +Source: https://github.com/derf/feh.git/%{version}/feh-%{version}.tar.bz2 +License: MIT +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libX11-devel +BuildRequires: libXinerama-devel +BuildRequires: libcurl-devel +BuildRequires: libimlib2-devel +BuildRequires: libpng-devel +## AUTOBUILDREQ-END + +%description +feh is a light-weight, configurable and versatile image viewer. It is aimed at command line users, but can also be started from graphical file managers. Apart from viewing images, it can compile text and thumbnail listings, show (un)loadable files, set X11 backgrounds, and more. + +%debug_package + +%prep +%setup -q + +%build +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall PREFIX=%{_prefix} + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +%{_bindir}/feh +%{_datadir}/applications/feh.desktop +%dir %{_docdir}/feh +%{_docdir}/feh/AUTHORS +%{_docdir}/feh/ChangeLog +%{_docdir}/feh/README.md +%{_docdir}/feh/TODO +%dir %{_docdir}/feh/examples +%{_docdir}/feh/examples/* +%dir %{_datadir}/feh +%dir %{_datadir}/feh/fonts +%{_datadir}/feh/fonts/* +%dir %{_datadir}/feh/images +%{_datadir}/feh/images/* +%{_datadir}/icons/hicolor/48x48/apps/feh.png +%{_datadir}/icons/hicolor/scalable/apps/feh.svg +%{_mandir}/man1/feh.1* +%doc AUTHORS COPYING + +%changelog +* Fri Jun 28 2024 Silvan Calarco 3.10.2-1mamba +- package created using the webbuild interface