]> git.pld-linux.org Git - packages/al.git/blob - al.spec
- pl desc, post/postun deps are autogenerated
[packages/al.git] / al.spec
1 Summary:        OSSP al - Assembly Line
2 Summary(pl):    OSSP al - biblioteka Assembly Line ("linii monta¿owej")
3 Name:           al
4 Version:        0.9.1
5 Release:        0.1
6 License:        distributable (see README)
7 Group:          Libraries
8 Source0:        ftp://ftp.ossp.org/pkg/lib/al/%{name}-%{version}.tar.gz
9 # Source0-md5:  eba90e56fe7248466b66306a65868ae7
10 Patch0:         %{name}-ac.patch
11 URL:            http://www.ossp.org/pkg/lib/al/
12 BuildRequires:  autoconf
13 BuildRequires:  automake
14 BuildRequires:  libtool
15 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17 %description
18 OSSP al defines an abstract data type of a data buffer that can
19 assemble, move and truncate chunks of data in a stream but avoids
20 actual copying. It was built to deal efficiently with communication
21 streams between software modules. It especially provides flexible
22 semantical data attribution through by-chunk labeling. It also has
23 convenient chunk traversal methods and optional OSSP ex based
24 exception handling.
25
26 %description -l pl
27 OSSP al definiuje abstrakcyjne typy danych dla bufora danych, który
28 mo¿e ³±czyæ, przemieszczaæ i ucinaæ porcje danych w strumieniu, ale
29 unika samego kopiowania. Zosta³a stworzona, aby obs³ugiwaæ wydajnie
30 strumienie komunikacyjne pomiêdzy modu³ami oprogramowania. Udostêpnia
31 w szczególno¶ci elastyczne semantyczne przypisywanie danych poprzez
32 oznaczanie porcji. Ma tak¿e wygodne metody przechodzenia porcji i
33 opcjonaln± obs³ugê wyj±tków w oparciu o OSSP ex.
34
35 %package devel
36 Summary:        OSSP al - Assembly Line - header files and development libraries
37 Summary(pl):    OSSP al - biblioteka Assembly Line - pliki nag³ówkowe i biblioteki dla deweloperów
38 Group:          Development/Libraries
39 Requires:       %{name} = %{epoch}:%{version}-%{release}
40
41 %description devel
42 OSSP al - Assembly Line - header files and development libraries.
43
44 %description devel -l pl
45 OSSP al - biblioteka Assembly Line - pliki nag³ówkowe i biblioteki dla
46 deweloperów.
47
48 %package static
49 Summary:        OSSP al - Assembly Line - static libraries
50 Summary(pl):    OSSP al - biblioteka Assembly Line - biblioteki statyczne
51 Group:          Development/Libraries
52 Requires:       %{name}-devel = %{epoch}:%{version}-%{release}
53
54 %description static
55 OSSP al - Assembly Line - static libraries.
56
57 %description static -l pl
58 OSSP al - biblioteka Assembly Line - biblioteki statyczne.
59
60 %prep
61 %setup -q
62 %patch -p1
63
64 %build
65 mv -f aclocal.m4 acinclude.m4
66 %{__libtoolize}
67 %{__aclocal}
68 %{__autoconf}
69 %configure
70 %{__make}
71 #%%{__make} check //segfaults after passing tests
72
73 %install
74 rm -rf $RPM_BUILD_ROOT
75
76 %{__make} install \
77         DESTDIR=$RPM_BUILD_ROOT
78
79 %clean
80 rm -rf $RPM_BUILD_ROOT
81
82 %post   -p /sbin/ldconfig
83 %postun -p /sbin/ldconfig
84
85 %files
86 %defattr(644,root,root,755)
87 %doc AUTHORS ChangeLog README THANKS TODO
88 %attr(755,root,root) %{_libdir}/lib*.so.*.*.*
89
90 %files devel
91 %defattr(644,root,root,755)
92 %attr(755,root,root) %{_bindir}/*
93 %attr(755,root,root) %{_libdir}/lib*.so
94 %{_libdir}/lib*.la
95 %{_includedir}/*
96 %{_mandir}/man3/*
97
98 %files static
99 %defattr(644,root,root,755)
100 %attr(755,root,root) %{_libdir}/lib*.a
This page took 0.082969 seconds and 3 git commands to generate.