mirror of https://github.com/procxx/kepka.git
Prepare SPEC to 2.0.0 final release.
This commit is contained in:
parent
38efa1bf4b
commit
ba5c5d633b
55
kepka.spec
55
kepka.spec
|
@ -1,26 +1,22 @@
|
||||||
Name: kepka
|
Name: kepka
|
||||||
Version: 1.0.0
|
Version: 2.0.0
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
|
|
||||||
License: GPLv3+
|
License: GPLv3+
|
||||||
Summary: Unofficial Telegram desktop messaging app
|
Summary: Unofficial Telegram desktop messaging app
|
||||||
Group: Applications/Internet
|
|
||||||
URL: https://github.com/procxx/%{name}
|
URL: https://github.com/procxx/%{name}
|
||||||
|
Source0: %{url}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
||||||
ExclusiveArch: i686 x86_64
|
ExclusiveArch: i686 x86_64
|
||||||
|
|
||||||
Source0: %{url}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
# Additional runtime requirements...
|
||||||
|
|
||||||
Requires: qt5-qtimageformats%{?_isa}
|
Requires: qt5-qtimageformats%{?_isa}
|
||||||
Requires: hicolor-icon-theme
|
Requires: hicolor-icon-theme
|
||||||
Requires: gtk3%{?_isa}
|
|
||||||
Recommends: libappindicator-gtk3%{?_isa}
|
|
||||||
|
|
||||||
# Compilers and tools...
|
# Compilers and tools...
|
||||||
BuildRequires: desktop-file-utils
|
BuildRequires: desktop-file-utils
|
||||||
BuildRequires: libappstream-glib
|
BuildRequires: libappstream-glib
|
||||||
BuildRequires: ninja-build
|
BuildRequires: ninja-build
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
BuildRequires: chrpath
|
|
||||||
BuildRequires: cmake
|
BuildRequires: cmake
|
||||||
BuildRequires: gcc
|
BuildRequires: gcc
|
||||||
|
|
||||||
|
@ -44,59 +40,52 @@ BuildRequires: pulseaudio-libs-devel
|
||||||
BuildRequires: alsa-lib-devel
|
BuildRequires: alsa-lib-devel
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Telegram is a messaging app with a focus on speed and security, it’s super
|
Kepka is a messaging app with a focus on speed and security, it’s super
|
||||||
fast, simple and free. You can use Telegram on all your devices at the same
|
fast, simple and free. You can use Kepka on all your devices at the same
|
||||||
time — your messages sync seamlessly across any of your phones, tablets or
|
time — your messages sync seamlessly across any of your phones, tablets or
|
||||||
computers.
|
computers.
|
||||||
|
|
||||||
With Telegram, you can send messages, photos, videos and files of any type
|
With Kepka you can send messages, photos, videos and files of any type
|
||||||
(doc, zip, mp3, etc), as well as create groups for up to 200 people. You can
|
(doc, zip, mp3, etc), as well as create groups for up to 200 people. You can
|
||||||
write to your phone contacts and find people by their usernames. As a result,
|
write to your phone contacts and find people by their usernames. As a result,
|
||||||
Telegram is like SMS and email combined — and can take care of all your
|
Kepka is like SMS and email combined — and can take care of all your
|
||||||
personal or business messaging needs.
|
personal or business messaging needs.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
# Unpacking main source archive...
|
# Unpacking main source archive...
|
||||||
%autosetup -p1
|
%autosetup -p1
|
||||||
mkdir %{_target_platform}
|
mkdir -p %{_target_platform}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
# Building application...
|
# Configuring application...
|
||||||
pushd %{_target_platform}
|
pushd %{_target_platform}
|
||||||
%cmake -G Ninja -DPACKAGED_BUILD=1 -DCMAKE_BUILD_TYPE=Release ..
|
%cmake -G Ninja -DPACKAGED_BUILD=1 -DCMAKE_BUILD_TYPE=Release ..
|
||||||
%ninja_build
|
|
||||||
popd
|
popd
|
||||||
|
|
||||||
|
# Building application...
|
||||||
|
%ninja_build -C %{_target_platform}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
# Installing executables...
|
# Installing application...
|
||||||
mkdir -p "%{buildroot}%{_bindir}"
|
%ninja_install -C %{_target_platform}
|
||||||
install -m 0755 -p %{_target_platform}/Telegram/Telegram "%{buildroot}%{_bindir}/%{name}"
|
|
||||||
|
|
||||||
# Installing desktop shortcut...
|
|
||||||
desktop-file-install --dir="%{buildroot}%{_datadir}/applications" lib/xdg/%{name}.desktop
|
|
||||||
|
|
||||||
# Installing icons...
|
|
||||||
for size in 16 32 48 64 128 256 512; do
|
|
||||||
dir="%{buildroot}%{_datadir}/icons/hicolor/${size}x${size}/apps"
|
|
||||||
install -d "$dir"
|
|
||||||
install -m 0644 -p Telegram/Resources/art/icon${size}.png "$dir/%{name}.png"
|
|
||||||
done
|
|
||||||
|
|
||||||
# Installing appdata for Gnome Software...
|
|
||||||
install -d "%{buildroot}%{_datadir}/metainfo"
|
|
||||||
install -m 0644 -p lib/xdg/%{name}.appdata.xml "%{buildroot}%{_datadir}/metainfo/%{name}.appdata.xml"
|
|
||||||
|
|
||||||
%check
|
%check
|
||||||
appstream-util validate-relax --nonet "%{buildroot}%{_datadir}/metainfo/%{name}.appdata.xml"
|
# Checking AppStream manifest and desktop file...
|
||||||
|
appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/%{name}.appdata.xml
|
||||||
|
desktop-file-validate %{buildroot}%{_datadir}/applications/%{name}.desktop
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%doc README.md changelog.txt
|
%doc README.md
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%{_bindir}/%{name}
|
%{_bindir}/%{name}
|
||||||
%{_datadir}/applications/%{name}.desktop
|
%{_datadir}/applications/%{name}.desktop
|
||||||
%{_datadir}/icons/hicolor/*/apps/%{name}.png
|
%{_datadir}/icons/hicolor/*/apps/%{name}.png
|
||||||
|
%{_datadir}/kservices5/tg.protocol
|
||||||
%{_datadir}/metainfo/%{name}.appdata.xml
|
%{_datadir}/metainfo/%{name}.appdata.xml
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Jul 27 2018 Vitaly Zaitsev <vitaly@easycoding.org> - 2.0.0-1
|
||||||
|
- Updated to version 2.0.0.
|
||||||
|
|
||||||
* Thu Dec 21 2017 Vitaly Zaitsev <vitaly@easycoding.org> - 1.0.0-1
|
* Thu Dec 21 2017 Vitaly Zaitsev <vitaly@easycoding.org> - 1.0.0-1
|
||||||
- Initial SPEC release.
|
- Initial SPEC release.
|
||||||
|
|
Loading…
Reference in New Issue