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