]> git.pld-linux.org Git - packages/bakefile.git/blob - bakefile.spec
- updated to 0.2.1 release
[packages/bakefile.git] / bakefile.spec
1 Summary:        Native makefiles generator
2 Summary(pl):    Generator natywnych plików typu Makefile
3 Name:           bakefile
4 Version:        0.2.1
5 Release:        1
6 License:        GPL v2+
7 Group:          Applications/Text
8 Source0:        http://dl.sourceforge.net/bakefile/bakefile-%{version}.tar.gz
9 # Source0-md5:  bf8f8b25d203e84902efec87636da485
10 Patch0:         %{name}-empy.patch
11 URL:            http://bakefile.sourceforge.net/
12 BuildRequires:  autoconf
13 BuildRequires:  automake
14 BuildRequires:  libtool
15 BuildRequires:  python-devel
16 %pyrequires_eq  python-modules
17 Requires:       python-libxml2
18 Requires:       empy >= 3.1
19 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
20
21 %description
22 Bakefile is cross-platform, cross-compiler native makefiles generator.
23 It takes compiler-independent description of build tasks as input and
24 generate native makefile (autoconf's Makefile.in, Visual C++ project,
25 bcc makefile etc.).
26
27 %description -l pl
28 Bakefile to generator natywnych plików typu Makefile dla wielu
29 platform i kompilatorów. Przyjmuje na wej¶ciu niezale¿ny od
30 kompilatora opis zadañ budowania  i tworzy natywny plik (Makefile.in
31 dla autoconfa, projekt dla Visual C++, makefile dla bcc itd.).
32
33 %prep
34 %setup -q
35 %patch0 -p1
36
37 %build
38 %{__aclocal} -I admin
39 %{__autoconf}
40 %{__automake}
41 %configure
42
43 %install
44 rm -rf $RPM_BUILD_ROOT
45 install -d $RPM_BUILD_ROOT{%{_examplesdir}/%{name}-%{version},%{_bindir}}
46
47 %{__make} \
48         DESTDIR=$RPM_BUILD_ROOT \
49         install
50
51 # use system available modules
52 rm -rf $RPM_BUILD_ROOT%{_libdir}/%{name}/{empy,optik}
53
54 %clean
55 rm -rf $RPM_BUILD_ROOT
56
57 %files
58 %defattr(644,root,root,755)
59 %doc README THANKS doc/html
60 %attr(755,root,root) %{_bindir}/*
61 %{_aclocaldir}/*.m4
62 %{_datadir}/%{name}
63 %dir %{_libdir}/%{name}
64 %{_libdir}/%{name}/*.py[oc]
65 %attr(755,root,root) %{_libdir}/%{name}/*.so
66 %attr(755,root,root) %{_libdir}/%{name}/bakefile.py
67 %attr(755,root,root) %{_libdir}/%{name}/bakefile_gen.py
68 %{_mandir}/man1/bakefil*.1*
This page took 0.128789 seconds and 4 git commands to generate.