]> git.pld-linux.org Git - packages/cocom.git/blob - cocom.spec
- up to 0.996
[packages/cocom.git] / cocom.spec
1 # TODO: revise packaging?
2 Summary:        COCOM tool set
3 Summary(pl.UTF-8):      Zestaw narzędzi COCOM
4 Name:           cocom
5 Version:        0.996
6 Release:        0.2
7 License:        GPL
8 Group:          Development/Languages
9 Source0:        http://dl.sourceforge.net/cocom/%{name}-%{version}.tar.gz
10 # Source0-md5:  c95c5504fd76f4e05c4155ed840cc756
11 URL:            http://cocom.sourceforge.net/
12 BuildRequires:  autoconf
13 BuildRequires:  bison
14 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16 %description
17 This is COCOM tool set (Russian Armoury) oriented onto the creation
18 of compilers, cross-compilers, interpreters, and other language
19 processors. The distribution also contains interpreter of language
20 DINO as an example of the tool set usage. The tool set is aimed to
21 use on Unixes of different flavors. COCOM also has been ported also
22 into WIN32 environment.
23
24 %description -l pl.UTF-8
25 To jest zestaw narzędzi COCOM (arsenał rosyjski), zorientowany na
26 tworzenie kompilatorów, kompilatorów skrośnych, interpreterów i
27 innych procesorów języków. Pakiet zawiera także interpreter języka
28 DINO jako przykład użycia tego zestawu narzędzi. Narzędzia są
29 przeznaczone do używania na różnych uniksach, ale zostały sportowane
30 także do środowiska Win32.
31
32 %package devel
33 Summary:        COCOM header files
34 Summary(pl.UTF-8):      Pliki nagłówkowe COCOM
35 Group:          Development/Languages
36 Requires:       %{name} = %{version}-%{release}
37
38 %description devel
39 COCOM header files.
40
41 %description devel -l pl.UTF-8
42 Pliki nagłówkowe COCOM.
43
44 %prep
45 %setup -q
46
47 %build
48 cd REGEX
49 %{__autoconf}
50 cd ..
51 %configure
52 %{__make}
53
54 %install
55 rm -rf $RPM_BUILD_ROOT
56
57 %{__make} install \
58         DESTDIR=$RPM_BUILD_ROOT
59
60 %clean
61 rm -rf $RPM_BUILD_ROOT
62
63 %files
64 %defattr(644,root,root,755)
65 %doc CHANGES README cocom.html cocom.txt
66 %attr(755,root,root) %{_bindir}/*
67 %{_libdir}/libcocom*.a
68 %{_libdir}/*.sprut
69 %dir %{_libdir}/dino-*
70 %attr(755,root,root) %{_libdir}/dino-*/*.so
71 %{_libdir}/dino-*/lib*.a
72 %{_libdir}/dino-*/*.d
73 %{_mandir}/man1/*.1*
74
75 %files devel
76 %defattr(644,root,root,755)
77 %{_includedir}/*.h
78 %{_includedir}/dino-*
This page took 0.086144 seconds and 3 git commands to generate.