forked from pool/sqlitebrowser
ccc0da0ec8
- Update to 3.12.0 * Hightlights - Better table handling - Conditional formatting - Better threading and cancelling support for long-running queries - Multi-column sorting - New SQL parser with Unicode support and better coverage in general - Find dialogs everywhere - UI improvements everywhere - Proxy support - Better performance on slow systems - Support for pre-3.11 project file format https://sqlitebrowser.org/blog/version-3-12-0-released/ OBS-URL: https://build.opensuse.org/request/show/826567 OBS-URL: https://build.opensuse.org/package/show/server:database/sqlitebrowser?expand=0&rev=39
119 lines
3.7 KiB
RPMSpec
119 lines
3.7 KiB
RPMSpec
#
|
|
# spec file for package sqlitebrowser
|
|
#
|
|
# Copyright (c) 2020 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: sqlitebrowser
|
|
Version: 3.12.0
|
|
Release: 0
|
|
Summary: Spreadsheet-like interface to SQLite databases
|
|
License: GPL-3.0-or-later AND MPL-2.0
|
|
Group: Productivity/Office/Organizers
|
|
URL: http://sqlitebrowser.org
|
|
Source0: https://github.com/%{name}/%{name}/archive/v%{version}.tar.gz
|
|
Source1: sqlitebrowser.1
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: hicolor-icon-theme
|
|
BuildRequires: libqscintilla_qt5-devel
|
|
BuildRequires: libqt5-linguist-devel
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: update-desktop-files
|
|
BuildRequires: pkgconfig(Qt5Concurrent)
|
|
BuildRequires: pkgconfig(Qt5Gui)
|
|
BuildRequires: pkgconfig(Qt5Network)
|
|
BuildRequires: pkgconfig(Qt5PrintSupport)
|
|
BuildRequires: pkgconfig(Qt5Test)
|
|
BuildRequires: pkgconfig(Qt5Widgets)
|
|
BuildRequires: pkgconfig(Qt5Xml)
|
|
BuildRequires: pkgconfig(glib-2.0)
|
|
BuildRequires: pkgconfig(sqlite3)
|
|
Requires(post): hicolor-icon-theme
|
|
Requires(post): update-desktop-files
|
|
Requires(postun): hicolor-icon-theme
|
|
Requires(postun): update-desktop-files
|
|
# not on SLE-12
|
|
%if 0%{?suse_version} != 1315 || 0%{?is_opensuse}
|
|
BuildRequires: antlr-devel
|
|
%endif
|
|
|
|
%description
|
|
SQLite Database Browser is a visual tool for creating, designing and
|
|
editing database files compatible with SQLite. It provides a
|
|
spreadsheet-like interface, without the need to learn SQL commands.
|
|
Controls and guided dialogs are available for users to:
|
|
|
|
* Create and compact database files
|
|
* Create, define, modify and delete tables
|
|
* Create, define and delete indexes
|
|
* Browse, edit, add and delete records
|
|
* Search records
|
|
* Import and export records as text
|
|
* Import and export tables from/to CSV files
|
|
* Import and export databases from/to SQL dump files
|
|
* Issue SQL queries and inspect the results
|
|
* Examine a log of all SQL commands issued by the application
|
|
|
|
%prep
|
|
%setup -qn %{name}-%{version}
|
|
|
|
%build
|
|
%cmake \
|
|
-DQSCINTILLA_INCLUDE_DIR=%{_includedir}/qt5/Qsci \
|
|
-DQSCINTILLA_LIBRARY=%{_libdir}/libqscintilla2_qt5.so \
|
|
-DBUILD_SHARED_LIBS=OFF \
|
|
-Wno-dev
|
|
|
|
%cmake_build
|
|
|
|
%install
|
|
%cmake_install
|
|
mkdir -p %{buildroot}/%{_bindir} %{buildroot}/%{_datadir}/{applications,pixmaps}
|
|
install -D -m 0644 %{SOURCE1} %{buildroot}/%{_mandir}/man1/%{name}.1
|
|
install -m 0644 images/%{name}.png %{buildroot}/%{_datadir}/pixmaps/%{name}.png
|
|
cat > %{buildroot}/%{_datadir}/applications/%{name}.desktop << EOF
|
|
[Desktop Entry]
|
|
Categories=Application;Network;GNOME;GTK;System;X-SuSE-ServiceConfiguration;
|
|
StartupNotify=true
|
|
Exec=%{_bindir}/%{name}
|
|
Name=%{name}
|
|
GenericName=SQLite Database browser
|
|
Terminal=false
|
|
Type=Application
|
|
Icon=%{name}
|
|
EOF
|
|
%suse_update_desktop_file %{name}
|
|
|
|
%post
|
|
%desktop_database_post
|
|
%icon_theme_cache_post
|
|
|
|
%postun
|
|
%desktop_database_postun
|
|
%icon_theme_cache_postun
|
|
|
|
%files
|
|
%doc README.md currentrelease
|
|
%license LICENSE
|
|
%{_mandir}/man1/%{name}.1%{ext_man}
|
|
%{_bindir}/%{name}
|
|
%{_datadir}/applications/*
|
|
%dir %{_datadir}/metainfo
|
|
%{_datadir}/metainfo/%{name}.desktop.appdata.xml
|
|
%{_datadir}/pixmaps/*
|
|
%{_datadir}/icons/hicolor/*/apps/sqlitebrowser.png
|
|
|
|
%changelog
|