]> git.pld-linux.org Git - packages/qutebrowser.git/blame - qutebrowser.spec
build help files; rel 2
[packages/qutebrowser.git] / qutebrowser.spec
CommitLineData
fa863c6e
JP
1%define qtver 5.7.1
2Summary: A keyboard-driven, vim-like browser based on PyQt5
3Name: qutebrowser
155f64ca 4Version: 1.5.1
d4bfccd1 5Release: 2
fa863c6e
JP
6License: GPL v3+
7Group: X11/Applications/Networking
8Source0: https://github.com/qutebrowser/qutebrowser/archive/v%{version}.tar.gz
155f64ca 9# Source0-md5: c32578e1e95ac29a485929b17acd7344
fa863c6e
JP
10URL: https://www.qutebrowser.org/
11BuildRequires: asciidoc
12BuildRequires: python3 >= 3.6
13BuildRequires: python3-setuptools
14BuildRequires: rpm-pythonprov
15BuildRequires: rpmbuild(macros) >= 1.714
16Requires: Qt5Core >= %{qtver}
17Requires: Qt5OpenGL >= %{qtver}
18Requires: Qt5Sql >= %{qtver}
19Requires: Qt5WebEngine >= %{qtver}
20Requires: bash
21Requires: hicolor-icon-theme
22Requires: python3 >= 3.6
23Requires: python3-PyQt5 >= 5.7.0
24Requires: python3-PyYAML
25Requires: python3-attrs
26Requires: python3-jinja2
27Requires: python3-pyPEG2
28Requires: python3-pygments
29BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
30
31%description
32qutebrowser is a keyboard-focused browser with a minimal GUI. It’s
33based on Python, PyQt5 and QtWebEngine and free software, licensed
34under the GPL. It was inspired by other browsers/addons like dwb and
35Vimperator/Pentadactyl.
36
37%prep
38%setup -q
39
40grep -r '#!.*env bash' -l . | xargs %{__sed} -i -e '1 s,#!.*env bash.*,#!/bin/bash,'
41grep -r '#!.*env python' -l . | xargs %{__sed} -i -e '1 s,#!.*env python.*,#!%{__python3},'
42
43%build
44%py3_build
d4bfccd1
JP
45
46%{__python3} scripts/asciidoc2html.py
fa863c6e
JP
47
48%install
49rm -rf $RPM_BUILD_ROOT
50
51%py3_install
52
53%{__make} -f misc/Makefile install PYTHON=/bin/true DESTDIR=$RPM_BUILD_ROOT PREFIX=%{_prefix}
54
55%clean
56rm -rf $RPM_BUILD_ROOT
57
58%post
59%update_desktop_database_post
60%update_icon_cache hicolor
61
62%postun
63%update_desktop_database_postun
64%update_icon_cache hicolor
65
66%files
67%defattr(644,root,root,755)
68%doc README.asciidoc
69%attr(755,root,root) %{_bindir}/qutebrowser
70%{py3_sitescriptdir}/qutebrowser
71%{py3_sitescriptdir}/qutebrowser-%{version}-py*.egg-info
72%{_desktopdir}/qutebrowser.desktop
73%{_iconsdir}/hicolor/*x*/apps/qutebrowser.png
74%{_iconsdir}/hicolor/scalable/apps/qutebrowser.svg
75%{_mandir}/man1/qutebrowser.1*
76%{_datadir}/metainfo/qutebrowser.appdata.xml
77%dir %{_datadir}/qutebrowser
78%dir %{_datadir}/qutebrowser/scripts
79%{_datadir}/qutebrowser/scripts/*.js
80%attr(755,root,root) %{_datadir}/qutebrowser/scripts/*.py
81%attr(755,root,root) %{_datadir}/qutebrowser/scripts/*.sh
82%dir %{_datadir}/qutebrowser/userscripts
83%attr(755,root,root) %{_datadir}/qutebrowser/userscripts/*
This page took 0.086695 seconds and 4 git commands to generate.