]> git.pld-linux.org Git - packages/gabriel.git/blame - gabriel.spec
- allow to specify non-default ssh port
[packages/gabriel.git] / gabriel.spec
CommitLineData
fbd50e06 1#
182b45ca 2# TODO:
3# - gabriel-passphrase.patch:
4# ssh_userauth_autopubkey from libssh takes two arguments. The second one is
5# public key passphrase. This patch asumes that passphrase is empty so it
6# won't work with encrypted public keys. It should call pinentry or something.
7# I have no idea.
fbd50e06 8Summary: Secure remote D-Bus
9Summary(pl.UTF-8): Bezpieczny zdalny D-Bus
10Name: gabriel
11Version: 0.1
12Release: 0.1
182b45ca 13License: GPL v2
fbd50e06 14Group: Applications
15Source0: http://dl.sourceforge.net/gabriel/%{name}-%{version}.tar.gz
16# Source0-md5: 136d971aaf4917c31bfdc25c3f713091
17# Very ugly hack. See TODO file.
18Patch0: %{name}-passphrase.patch
19URL: http://gabriel.sourceforge.net/
20BuildRequires: autoconf
21BuildRequires: automake
22BuildRequires: glib-devel
23BuildRequires: libssh-devel
24BuildRequires: rpmbuild(macros) >= 1.228
25Requires(post,preun): /sbin/chkconfig
26BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
27
28%description
29Secure remote D-Bus.
30
31%description -l pl.UTF-8
32Bezpieczny zdalny D-Bus.
33
34%prep
35%setup -q
36
37%patch0 -p0
38
39%build
40# Is it correct?
41%{__aclocal}
42%{__autoconf}
43%{__automake}
44
45CPPFLAGS=-I/usr/include/glib-2.0
46%configure
47%{__make}
48%{__make} -C client
49
50%install
51rm -rf $RPM_BUILD_ROOT
52
53install -d $RPM_BUILD_ROOT%{_bindir}
54install client/gabriel $RPM_BUILD_ROOT%{_bindir}/%{name}
55
56%clean
57rm -rf $RPM_BUILD_ROOT
58
59%files
60%defattr(644,root,root,755)
61%doc AUTHORS ChangeLog NEWS README server/gabriel-server-start server/gabriel-server-stop server/gabriel-dbus.conf
62%attr(755,root,root) %{_bindir}/gabriel
This page took 0.075371 seconds and 4 git commands to generate.