2017-03-23 20:44:27 +00:00
|
|
|
# To build current git tree into RPM using tito:
|
|
|
|
# - Run `tito build --rpm --test`
|
|
|
|
|
|
|
|
# To build latest tagged release from git into RPM using tito:
|
|
|
|
# - Run `tito build --rpm`
|
|
|
|
|
|
|
|
# To build older tagged release from git into RPM using tito:
|
|
|
|
# - Run `tito build --rpm --tag=vVERSION`
|
|
|
|
|
|
|
|
# To build a tagged release from git into RPM using rpmbuild:
|
|
|
|
# - Put version number into Version
|
|
|
|
# - Run `spectool -g -R dino.spec`
|
|
|
|
# - Run `rpmbuild -bb dino.spec`
|
|
|
|
|
|
|
|
# To build a specific git commit into RPM using rpmbuild:
|
|
|
|
# - Put commit id into COMMIT_ID_HERE
|
|
|
|
# - Use second (currently commented) line for Release, Source0 and %setup
|
|
|
|
# - Run `spectool -g -R dino.spec`
|
|
|
|
# - Run `rpmbuild -bb dino.spec`
|
|
|
|
|
|
|
|
%global commit COMMIT_ID_HERE
|
|
|
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
|
|
|
|
|
|
|
Name: dino
|
2017-04-03 12:10:17 +00:00
|
|
|
Version: 0.0
|
|
|
|
Release: 1%{?dist}
|
|
|
|
#Release: 1.git.%{shortcommit}%{?dist}
|
2017-03-23 20:44:27 +00:00
|
|
|
Summary: Modern Jabber/XMPP Client using GTK+/Vala
|
|
|
|
License: GPLv3
|
|
|
|
URL: https://github.com/dino/dino
|
|
|
|
Source0: https://github.com/dino/dino/archive/v%{version}.zip
|
|
|
|
#Source0: https://github.com/dino/dino/archive/%{commit}.zip
|
|
|
|
BuildRequires: vala >= 0.30
|
|
|
|
BuildRequires: vala-tools >= 0.30
|
|
|
|
BuildRequires: cmake
|
|
|
|
BuildRequires: git
|
|
|
|
BuildRequires: ninja-build
|
|
|
|
BuildRequires: desktop-file-utils
|
|
|
|
BuildRequires: pkgconfig(gthread-2.0)
|
|
|
|
BuildRequires: pkgconfig(glib-2.0) >= 2.38
|
|
|
|
BuildRequires: pkgconfig(gio-2.0)
|
|
|
|
BuildRequires: pkgconfig(gtk+-3.0) >= 3.22
|
|
|
|
BuildRequires: pkgconfig(gee-0.8) >= 0.10
|
|
|
|
BuildRequires: pkgconfig(libnotify)
|
|
|
|
BuildRequires: pkgconfig(sqlite3)
|
|
|
|
BuildRequires: pkgconfig(openssl)
|
|
|
|
BuildRequires: gpgme-devel
|
2017-04-03 12:10:17 +00:00
|
|
|
Requires: hicolor-icon-theme
|
|
|
|
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
|
|
|
# Technically these aren't requirements, we just want them always installed...
|
|
|
|
Requires: %{name}-plugin-omemo%{?_isa} = %{version}-%{release}
|
|
|
|
Requires: %{name}-plugin-openpgp%{?_isa} = %{version}-%{release}
|
2017-03-23 20:44:27 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
Dino is an instant messaging client for the Jabber/XMPP network,
|
|
|
|
providing a unique and modern user experience based on the latest
|
|
|
|
technology from the GNOME project. Dino is still in early
|
|
|
|
development and has limited features, but already has basic support
|
|
|
|
for XMPP's latest encryption features. Future versions will provide
|
|
|
|
a plug-in API, so that developers can easily add new optional
|
|
|
|
features.
|
|
|
|
|
2017-04-03 12:10:17 +00:00
|
|
|
%package libs
|
|
|
|
Summary: Libraries for %{name}
|
|
|
|
|
|
|
|
%package libs-devel
|
2017-03-23 20:44:27 +00:00
|
|
|
Summary: Development files for %{name}
|
2017-04-03 12:10:17 +00:00
|
|
|
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
%package plugin-omemo
|
|
|
|
Summary: OMEMO plugin for %{name}
|
|
|
|
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
%package plugin-openpgp
|
|
|
|
Summary: OMEMO plugin for %{name}
|
|
|
|
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
2017-03-23 20:44:27 +00:00
|
|
|
|
2017-04-03 12:10:17 +00:00
|
|
|
%description libs
|
|
|
|
The %{name}-libs package contains libraries used and provided by %{name}.
|
|
|
|
|
|
|
|
%description libs-devel
|
|
|
|
The %{name}-libs-devel package contains libraries and header files for
|
2017-03-23 20:44:27 +00:00
|
|
|
developing plugins for %{name}.
|
|
|
|
|
2017-04-03 12:10:17 +00:00
|
|
|
%description plugin-omemo
|
|
|
|
The %{name}-plugin-omemo package contains a plugin that adds support for
|
|
|
|
OMEMO encryption to Dino.
|
|
|
|
|
|
|
|
%description plugin-openpgp
|
|
|
|
The %{name}-plugin-openpgp package contains a plugin that adds support for
|
|
|
|
OpenPGP encryption to Dino.
|
|
|
|
|
2017-03-23 20:44:27 +00:00
|
|
|
%prep
|
|
|
|
%setup -n "dino-v%{version}"
|
|
|
|
#%setup -n "dino-%{commit}"
|
|
|
|
|
|
|
|
%build
|
2017-03-30 13:29:21 +00:00
|
|
|
%configure
|
2017-03-23 20:44:27 +00:00
|
|
|
make
|
|
|
|
|
|
|
|
%install
|
2017-03-30 13:29:21 +00:00
|
|
|
make install DESTDIR="%{buildroot}"
|
2017-03-23 20:44:27 +00:00
|
|
|
desktop-file-validate %{buildroot}%{_datadir}/applications/dino.desktop
|
|
|
|
|
|
|
|
%post
|
|
|
|
update-desktop-database &>/dev/null || :
|
|
|
|
touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
|
|
|
|
|
|
|
|
%postun
|
|
|
|
update-desktop-database &> /dev/null || :
|
|
|
|
if [ $1 -eq 0 ] ; then
|
|
|
|
touch --no-create %{_datadir}/icons/hicolor &>/dev/null
|
|
|
|
gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor &>/dev/null || :
|
|
|
|
fi
|
|
|
|
|
|
|
|
%posttrans
|
|
|
|
gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor &>/dev/null || :
|
2017-04-03 12:10:17 +00:00
|
|
|
|
|
|
|
%post libs
|
|
|
|
/sbin/ldconfig
|
|
|
|
if [ $1 -eq 0 ] ; then
|
|
|
|
glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
|
|
|
|
fi
|
|
|
|
|
|
|
|
%postun libs
|
|
|
|
/sbin/ldconfig
|
|
|
|
|
|
|
|
%posttrans libs
|
2017-03-23 20:44:27 +00:00
|
|
|
glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
|
|
|
|
|
|
|
|
%files
|
|
|
|
%license LICENSE
|
|
|
|
%doc README.md
|
|
|
|
%{_bindir}/dino
|
|
|
|
%{_datadir}/applications/dino.desktop
|
|
|
|
%{_datadir}/icons/hicolor/*/apps/dino.*
|
|
|
|
%{_datadir}/icons/hicolor/*/apps/dino-*
|
|
|
|
%{_datadir}/icons/hicolor/*/status/dino-*
|
|
|
|
|
2017-04-03 12:10:17 +00:00
|
|
|
%files libs
|
|
|
|
%license LICENSE
|
|
|
|
%doc README.md
|
|
|
|
%{_datadir}/glib-2.0/schemas/dino.gschema.xml
|
|
|
|
%{_libdir}/libdino.so.*
|
|
|
|
%{_libdir}/libqlite.so.*
|
|
|
|
%{_libdir}/libxmpp-vala.so.*
|
|
|
|
|
|
|
|
%files libs-devel
|
|
|
|
%license LICENSE
|
|
|
|
%doc README.md
|
2017-03-23 20:44:27 +00:00
|
|
|
%{_includedir}/*
|
2017-04-03 12:10:17 +00:00
|
|
|
%{_libdir}/libdino.so
|
|
|
|
%{_libdir}/libqlite.so
|
|
|
|
%{_libdir}/libxmpp-vala.so
|
2017-03-23 20:44:27 +00:00
|
|
|
%{_datadir}/vala/vapi
|
|
|
|
|
2017-04-03 12:10:17 +00:00
|
|
|
%files plugin-omemo
|
|
|
|
%license LICENSE
|
|
|
|
%doc README.md
|
|
|
|
%{_libdir}/dino/plugins/omemo.so
|
|
|
|
|
|
|
|
%files plugin-openpgp
|
|
|
|
%license LICENSE
|
|
|
|
%doc README.md
|
|
|
|
%{_libdir}/dino/plugins/openpgp.so
|
|
|
|
|
2017-03-23 20:44:27 +00:00
|
|
|
%changelog
|
2017-04-03 12:10:17 +00:00
|
|
|
* Mon Apr 3 2017 - 0.0-1
|
|
|
|
- Split packages
|
|
|
|
|
|
|
|
* Fri Mar 24 2017 - 0.0-0
|
2017-03-23 20:44:27 +00:00
|
|
|
- Initial version
|