]> git.pld-linux.org Git - packages/libPropList.git/blob - libPropList.spec
- removed all Group fields translations (oure rpm now can handle translating
[packages/libPropList.git] / libPropList.spec
1 Summary:        library for reading/writing GNUstep-style defaults databases
2 Summary(pl):    Biblioteka libPropList
3 Name:           libPropList
4 Version:        0.10.1
5 Release:        9
6 License:        GPL
7 Group:          X11/Libraries
8 Source0:        ftp://ftp.windowmaker.org/pub/libs/%{name}-%{version}.tar.gz
9 URL:            http://www.windowmaker.org/
10 BuildRequires:  autoconf
11 BuildRequires:  automake
12 BuildRequires:  libtool
13 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15 %define         _prefix         /usr
16
17 %description
18 The libPropList library, hereafter referred to as PL, uses an opaque
19 data type to represent a tree structure made of strings, data blocks,
20 arrays and dictionaries (key-value pair lists). This structure can be
21 manipulated, written out to and read in from a file, and synchronized
22 with the contents of a file. The purpose of PL is to closely mimick
23 the behaviour of the property lists used in GNUstep/OPENSTEP (there
24 formed with the NSString, NSData, NSArray and NSDictionary classes)
25 and to be compatible with it. PL enables programs that use
26 configuration or preference files to make these compatible with
27 GNUstep/OPENSTEP's user defaults handling mechanism, without needing
28 to use Objective-C or GNUstep/OPENSTEP themselves.
29
30 %description -l pl
31 libPropList jest bibliotek± wymagan± przez Window Maker'a.
32
33 %package devel
34 Summary:        libPropList libraries
35 Summary(pl):    Biblioteki libPropList
36 Group:          Development/Libraries
37 Requires:       %{name} = %{version}
38
39 %description devel
40 libPropList headers files
41
42 %description devel -l pl
43 Ten pakiet zawiera pliki nag³ówkowe i biblioteki niezbêdne do
44 tworzenia aplikacji korzystaj±cych z biblioteki libPropList.
45
46 %package static
47 Summary:        libPropList static libraries
48 Summary(pl):    Biblioteki statyczne libPropList
49 Group:          Development/Libraries
50 Requires:       %{name}-devel = %{version}
51
52 %description static
53 This package contains static libraries for building libPropList
54 applications.
55
56 %description static -l pl
57 Ten pakiet zawiera statyczne biblioteki niezbêdne do tworzenia
58 aplikacji korzystaj±cych z biblioteki libPropList.
59
60 %prep
61 %setup -q 
62
63 %build
64 rm -f missing
65 libtoolize --copy --force
66 aclocal
67 autoconf
68 automake -a -c
69 %configure
70 %{__make} 
71
72 %install
73 rm -rf $RPM_BUILD_ROOT
74
75 %{__make} install DESTDIR=$RPM_BUILD_ROOT 
76
77 gzip -9nf AUTHORS ChangeLog NEWS README
78
79 %post   -p /sbin/ldconfig
80 %postun -p /sbin/ldconfig
81
82 %clean
83 rm -rf $RPM_BUILD_ROOT
84
85 %files
86 %defattr(644,root,root,755)
87 %attr(755,root,root) %{_libdir}/lib*.so.*.*
88
89 %files devel
90 %defattr(644,root,root,755)
91 %doc {AUTHORS,ChangeLog,NEWS,README}.gz
92 %attr(755,root,root) %{_libdir}/lib*.so
93 %attr(755,root,root) %{_libdir}/lib*.la
94 %{_includedir}/*.h
95
96 %files static
97 %defattr(644,root,root,755)
98 %{_libdir}/lib*.a
This page took 0.180292 seconds and 4 git commands to generate.