|
Revision 114, 1.3 KB
(checked in by zany, 2 years ago)
|
|
syncing trunk
|
| Line | |
|---|
| 1 | # |
|---|
| 2 | # spec file for package ObexFTP (Version 0.15) |
|---|
| 3 | # |
|---|
| 4 | # Author: Christian W. Zuckschwerdt <zany@triq.net>, Dec 2001 - Sep 2004 |
|---|
| 5 | # |
|---|
| 6 | |
|---|
| 7 | Summary: Access devices via ObexFTP e.g. mobile phones |
|---|
| 8 | Name: obexftp |
|---|
| 9 | Version: @VERSION@ |
|---|
| 10 | Release: 1 |
|---|
| 11 | Copyright: GPL |
|---|
| 12 | Group: Utilities/Console |
|---|
| 13 | Autoreqprov: on |
|---|
| 14 | Source: http://triq.net/obexftp/%{name}-%{version}.tar.gz |
|---|
| 15 | URL: http://triq.net/obex/ |
|---|
| 16 | BuildRoot: %{_tmppath}/%{name}-%{version}-root |
|---|
| 17 | Packager: Christian W. Zuckschwerdt <zany@triq.net> |
|---|
| 18 | |
|---|
| 19 | |
|---|
| 20 | %description |
|---|
| 21 | This package contains some command line tools and the ObexFTP library. |
|---|
| 22 | Using OpenOBEX it enables you to transfer data via IrDA, BlueTooth |
|---|
| 23 | as well as some custom (Siemens, Ericsson) serial port protocols. |
|---|
| 24 | |
|---|
| 25 | Authors: |
|---|
| 26 | -------- |
|---|
| 27 | Christian W. Zuckschwerdt <zany@triq.net> |
|---|
| 28 | |
|---|
| 29 | |
|---|
| 30 | %prep |
|---|
| 31 | %setup |
|---|
| 32 | |
|---|
| 33 | %configure |
|---|
| 34 | |
|---|
| 35 | %build |
|---|
| 36 | make |
|---|
| 37 | |
|---|
| 38 | %install |
|---|
| 39 | rm -rf $RPM_BUILD_ROOT |
|---|
| 40 | %makeinstall |
|---|
| 41 | ln -s obexftp $RPM_BUILD_ROOT%{_bindir}/obexls |
|---|
| 42 | ln -s obexftp $RPM_BUILD_ROOT%{_bindir}/obexget |
|---|
| 43 | ln -s obexftp $RPM_BUILD_ROOT%{_bindir}/obexput |
|---|
| 44 | ln -s obexftp $RPM_BUILD_ROOT%{_bindir}/obexrm |
|---|
| 45 | |
|---|
| 46 | %clean |
|---|
| 47 | rm -rf $RPM_BUILD_ROOT |
|---|
| 48 | |
|---|
| 49 | %files |
|---|
| 50 | %defattr(-, root, root) |
|---|
| 51 | %doc AUTHORS COPYING ChangeLog NEWS |
|---|
| 52 | %doc README README.bfb README.obexftp README.openobex |
|---|
| 53 | %{_bindir}/* |
|---|
| 54 | %{_libdir}/* |
|---|
| 55 | %{_mandir}/man?/* |
|---|
| 56 | %{_includedir}/*/* |
|---|