mirror of
https://abf.rosa.ru/djam/dbeaver.git
synced 2025-02-23 16:23:02 +00:00
Update to 6.3.2
This commit is contained in:
parent
28ac2daac5
commit
dfe69bb780
2 changed files with 25 additions and 9 deletions
2
.abf.yml
2
.abf.yml
|
@ -1,2 +1,2 @@
|
|||
sources:
|
||||
dbeaver-6.2.3.tar.gz: e55a3295da31c6c038853d366b063988024bf2f2
|
||||
dbeaver-6.3.2.tar.gz: cfe83612515215d582a9d9cb4adfcb375dbaa76f
|
||||
|
|
30
dbeaver.spec
30
dbeaver.spec
|
@ -1,19 +1,20 @@
|
|||
%define debug %nil
|
||||
%define debug_package %nil
|
||||
%define JAVA8 /usr/lib/jvm/java-1.8.0/
|
||||
%define _JAVA8 /usr/lib/jvm/java-1.8.0/
|
||||
|
||||
Name: dbeaver
|
||||
Version: 6.2.3
|
||||
Release: 2
|
||||
Version: 6.3.2
|
||||
Release: 1
|
||||
Summary: Universal database manager and SQL client
|
||||
URL: https://dbeaver.io
|
||||
Source0: %{name}-%{version}.tar.gz
|
||||
Source0: https://github.com/dbeaver/dbeaver/archive/%{version}/%{name}-%{version}.tar.gz
|
||||
Source100: %{name}.rpmlintrc
|
||||
Group: Development/Databases
|
||||
License: ASL 2.0
|
||||
ExcludeArch: x86 i386 i486 i586 i686
|
||||
BuildRequires: maven >= 3
|
||||
BuildRequires: java-devel >= 1.8
|
||||
BuildRequires: imagemagick
|
||||
|
||||
%description
|
||||
Free multi-platform database tool for developers,
|
||||
|
@ -35,7 +36,7 @@ HSQLDB, Derby, Teradata, Vertica, Netezza, Informix.
|
|||
%setup -q
|
||||
|
||||
%build
|
||||
JAVA_HOME=%{JAVA8} mvn clean install
|
||||
JAVA_HOME=%{_JAVA8} mvn clean install
|
||||
|
||||
%install
|
||||
install -d %{buildroot}%{_bindir}
|
||||
|
@ -58,7 +59,7 @@ cat > %{buildroot}%{_bindir}/%{name} <<EOF
|
|||
#!/bin/bash
|
||||
|
||||
%{_datadir}/%{name}/%{name}
|
||||
#-vm %{JAVA8}/bin
|
||||
#-vm %{_JAVA8}/bin
|
||||
|
||||
EOF
|
||||
|
||||
|
@ -79,11 +80,26 @@ Icon=%{name}
|
|||
Terminal=false
|
||||
Type=Application
|
||||
StartupNotify=true
|
||||
Categories=Application;Development;IDE;X-JAVA;DataBases
|
||||
Categories=Application;Development;IDE;X-DataBases
|
||||
EOF
|
||||
|
||||
|
||||
# install icons product/standalone/icons-sources
|
||||
pushd product/standalone/icons-sources
|
||||
|
||||
for i in 16 24 32 48 64 128 256 512; do
|
||||
|
||||
convert -resize "$i" icon_512x512.png %{name}.png
|
||||
|
||||
install -Dm0644 %{name}.png %{buildroot}%{_iconsdir}/hicolor/"$i"x"$i"/apps/%{name}.png
|
||||
|
||||
done
|
||||
|
||||
popd
|
||||
|
||||
%files
|
||||
%doc README.md LICENSE.md
|
||||
%{_bindir}
|
||||
%{_datadir}/%{name}
|
||||
%{_datadir}/applications/%{name}.desktop
|
||||
%{_iconsdir}//hicolor/*/apps/%{name}.png
|
Loading…
Add table
Reference in a new issue