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