]> git.pld-linux.org Git - packages/eds-to-idevice.git/blob - eds-to-idevice.spec
- new
[packages/eds-to-idevice.git] / eds-to-idevice.spec
1 Summary:        Tool to copy contacts to iDevices
2 Name:           eds-to-idevice
3 Version:        0.5
4 Release:        1
5 License:        GPL v2
6 Group:          Applications
7 Source0:        http://people.freedesktop.org/~teuf/eds-to-idevice/%{name}-%{version}.tar.bz2
8 # Source0-md5:  66a6810c0a888506b832af6ce63f1db5
9 URL:            http://cfergeau.blogspot.fr/2011/03/transferring-contacts-to-idevice.html
10 BuildRequires:  evolution-data-server-devel
11 BuildRequires:  glib2-devel
12 BuildRequires:  libimobiledevice-devel >= 1.1
13 BuildRequires:  libplist-devel >= 1.4
14 BuildRequires:  pkg-config
15 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17 %description
18 eds-to-idevice is a commandline tool to transfer contacts stored in
19 evolution-data-server addressbooks to an iDevice from Apple. It uses
20 libebook for the communication with evolution-data-server and
21 libimobiledevice to communicate with iDevices.
22
23 This tool isn't a synchronization tool, it makes no attempt at
24 matching contacts from evolution with contacts from the iDevice. If
25 you try to copy contacts that are already present on the iDevice, they
26 will likely be duplicated.
27
28 %prep
29 %setup -q
30
31 %build
32 %{__libtoolize}
33 %{__aclocal}
34 %{__autoconf}
35 %{__automake}
36 CFLAGS=$(pkg-config --cflags glib-2.0)
37 %configure \
38         --disable-silent-rules
39 %{__make}
40
41 %install
42 rm -rf $RPM_BUILD_ROOT
43 %{__make} install \
44         DESTDIR=$RPM_BUILD_ROOT
45
46 %clean
47 rm -rf $RPM_BUILD_ROOT
48
49 %files
50 %defattr(644,root,root,755)
51 %doc AUTHORS NEWS README
52 %attr(755,root,root) %{_bindir}/eds-to-idevice
This page took 0.07835 seconds and 3 git commands to generate.