summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnas Nashif <anas.nashif@intel.com>2012-11-06 11:53:59 -0800
committerPhilippe Coval <philippe.coval@open.eurogiciel.org>2014-10-29 16:46:35 +0100
commit01f109ed56cbd55ee025c6a135b42a01113dfad3 (patch)
tree03157fe650d506ff2238a1301bc071e208aa208d
parent7cb0de6326c915a72253fd103dae93308031ec3f (diff)
downloadrsync-01f109ed56cbd55ee025c6a135b42a01113dfad3.tar.gz
rsync-01f109ed56cbd55ee025c6a135b42a01113dfad3.tar.bz2
rsync-01f109ed56cbd55ee025c6a135b42a01113dfad3.zip
packaging: Initial packaging for Tizen
Change-Id: If228c232dabc31caae7c89dc1901a1b04801f53f
-rw-r--r--packaging/rsync.spec52
1 files changed, 52 insertions, 0 deletions
diff --git a/packaging/rsync.spec b/packaging/rsync.spec
new file mode 100644
index 00000000..62d765b6
--- /dev/null
+++ b/packaging/rsync.spec
@@ -0,0 +1,52 @@
+#
+# Please submit bugfixes or comments via http://bugs.tizen.org/
+#
+
+Name: rsync
+Version: 3.0.8
+Release: 1
+License: GPL-3.0+
+Summary: A program for synchronizing files over a network
+Url: http://rsync.samba.org/
+Group: Applications/Internet
+Source0: http://rsync.samba.org/ftp/rsync/src/rsync-%{version}.tar.gz
+BuildRequires: libacl-devel
+BuildRequires: libattr-devel
+BuildRequires: pkgconfig(popt)
+
+%description
+Rsync uses a reliable algorithm to bring remote and host files into
+sync very quickly. Rsync is fast because it just sends the differences
+in the files over the network instead of sending the complete
+files. Rsync is often used as a very powerful mirroring process or
+just as a more capable replacement for the rcp command. A technical
+report which describes the rsync algorithm is included in this
+package.
+
+%package support
+Summary: Support files for rsync
+Group: Applications/System
+Requires: %{name} = %{version}
+
+%description support
+Support filrs for rsync
+
+%prep
+%setup -q
+
+%build
+
+%configure --disable-static
+make %{?_smp_mflags}
+
+%install
+%make_install
+
+%files
+%defattr(-,root,root,-)
+%doc COPYING README
+%{_bindir}/rsync
+%doc %{_mandir}/man1/rsync.1*
+%doc %{_mandir}/man5/rsyncd.conf.5*
+
+