]> git.pld-linux.org Git - packages/pilot-link.git/blob - pilot-link.spec
2a33278886b95f10cf48f8a471a7533d237bcbdf
[packages/pilot-link.git] / pilot-link.spec
1 Summary:     Pilot Link - USR Pilot to Unix transfer utilities
2 Name:        pilot-link
3 Version:     0.8.13
4 Release:     2
5 Copyright:   GPL
6 Group:       Utilities/System
7 Source:      ftp://ryeham.ee.ryerson.ca/pub/PalmOS/%{name}.%{version}.tar.gz
8 Buildroot:   /tmp/%{name}-%{version}-root
9
10 %description
11 This suite of tools allows you to upload and download programs and data
12 files between a *nix machine and the USR Pilot.  It has a few extra utils
13 that will allow for things like syncing the Pilot's calendar app with Ical. 
14 Note that you might still need to consult the sources for pilot-link if you
15 would like the Python, Tcl, or Perl bindings.
16
17 %package devel
18 Summary:     Pilot Development Headers
19 Group:       Development/Building
20 Requires:    %{name} = %{version}
21
22 %description devel
23 This package contains the development headers that are used to build the
24 pilot-link package.
25
26 %package static
27 Summary:     Pilot static libraries
28 Group:       Development/Building
29 Requires:    %{name}-devel = %{version}
30
31 %description static
32 Static libraries necessary to build static pilot apps.
33
34 %prep 
35 %setup -q -n %{name}.%{version}
36
37 %build
38 CFLAGS="$RPM_OPT_FLAGS" CXFLAGS="$RPM_OPT_FLAGS" LDFLAGS="-s" \
39 ./configure \
40         --prefix=/usr \
41         --without-perl5
42
43 %install
44 rm -fr $RPM_BUILD_ROOT
45 make install prefix=$RPM_BUILD_ROOT/usr
46
47 gzip -9nf $RPM_BUILD_ROOT/usr/man/man{1,7}/*
48 strip $RPM_BUILD_ROOT/usr/lib/lib*.so.*.*
49
50 %post   -p /sbin/ldconfig
51 %postun -p /sbin/ldconfig
52
53 %clean
54 rm -fr $RPM_BUILD_ROOT
55
56 %files
57 %defattr(644, roo, root, 755)
58 %doc ChangeLog README
59 /usr/lib/lib*.so.*.*
60 %attr(755, root, root) /usr/bin/*
61 %attr(644, root,  man) /usr/man/man[17]/*
62 /usr/lib/pix
63
64 %files devel
65 %defattr(644, roo, root, 755)
66 /usr/lib/libpisock.so
67 /usr/include/*
68
69 %files static
70 %attr(644, roo, root) /usr/lib/lib*.a
71
72 %changelog
73 * Fri Dec  6 1998 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
74   [0.8.13-2]
75 - added -q %setup parameter,
76 - added gzipping man pages,
77 - changed Buildroot to /tmp/%%{name}-%%{version}-root,
78 - added using %%{name} and %%{version} in Source,
79 - added static subpackage,
80 - fixed %post{un},
81 - changed dependencies to "Requires: %%{name} = %%{version}" in devel
82   subpackage,
83 - added using $RPM_OPT_FLAGS during compile,
84 - added striping shared libraries,
85 - removed perl stuff (now is buggy),
86 - added %attr and %defattr macros in %files (allow build package from
87   non-root account).
88
89 * Tue May 19 1998 Michael Maher <mike@redhat.com>
90 - updated rpm
91
92 * Thu Jan 29 1998 Otto Hammersmith <otto@redhat.com>
93 - added changelog
94 - updated to 0.8.9
95 - removed explicit requires for /usr/bin/perl
This page took 0.077896 seconds and 2 git commands to generate.