]> git.pld-linux.org Git - packages/al.git/blob - al.spec
- new
[packages/al.git] / al.spec
1 Summary:        OSSP al - Assembly Line
2 Summary(pl):    OSSP al - biblioteka Assembly Line
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/%{name}/%{name}-%{version}.tar.gz
9 # Source0-md5:  eba90e56fe7248466b66306a65868ae7
10 Patch0:         %{name}-ac.patch
11 URL:            http://www.ossp.org/pkg/lib/%{name}/
12 BuildRequires:  autoconf
13 BuildRequires:  automake
14 BuildRequires:  libtool
15 Requires(post,postun):  /sbin/ldconfig
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
29 %package devel
30 Summary:        OSSP al - Assembly Line - header files and development libraries
31 Summary(pl):    OSSP al - biblioteka Assembly Line - pliki nag³ówkowe i biblioteki dla deweloperów
32 Group:          Development/Libraries
33 Requires:       %{name} = %{epoch}:%{version}-%{release}
34
35 %description devel
36 OSSP al - Assembly Line - header files and development libraries.
37
38 %description devel -l pl
39 OSSP al - biblioteka Assembly Line - pliki nag³ówkowe i biblioteki dla
40 deweloperów.
41
42 %package static
43 Summary:        OSSP al - Assembly Line - static libraries
44 Summary(pl):    OSSP al - biblioteka Assembly Line - biblioteki statyczne
45 Group:          Development/Libraries
46 Requires:       %{name}-devel = %{epoch}:%{version}-%{release}
47
48 %description static
49 OSSP al - Assembly Line - static libraries.
50
51 %description static -l pl
52 OSSP al - biblioteka Assembly Line - biblioteki statyczne.
53
54 %prep
55 %setup -q
56 %patch -p1
57
58 %build
59 mv -f aclocal.m4 acinclude.m4
60 %{__libtoolize}
61 %{__aclocal}
62 %{__autoconf}
63 %configure
64 %{__make}
65 #%%{__make} check //segfaults after passing tests
66
67 %install
68 rm -rf $RPM_BUILD_ROOT
69
70 %{__make} install \
71         DESTDIR=$RPM_BUILD_ROOT
72
73 %clean
74 rm -rf $RPM_BUILD_ROOT
75
76 %post -p /sbin/ldconfig
77
78 %postun -p /sbin/ldconfig
79
80 %files
81 %defattr(644,root,root,755)
82 %doc AUTHORS ChangeLog README THANKS TODO
83 %attr(755,root,root) %{_libdir}/lib*.so.*.*.*
84
85 %files devel
86 %defattr(644,root,root,755)
87 %attr(755,root,root) %{_bindir}/*
88 %attr(755,root,root) %{_libdir}/lib*.so
89 %{_libdir}/lib*.la
90 %{_includedir}/*
91 %{_mandir}/man3/*
92
93 %files static
94 %defattr(644,root,root,755)
95 %attr(755,root,root) %{_libdir}/lib*.a
This page took 0.084286 seconds and 3 git commands to generate.