]> git.pld-linux.org Git - packages/dmake.git/blob - dmake.spec
- package docs and man page
[packages/dmake.git] / dmake.spec
1 Summary:        Distributed Make
2 Name:           dmake
3 Version:        4.11
4 Release:        0.2
5 License:        GPL
6 Group:          Development/Building
7 Source0:        http://tools.openoffice.org/dmake/%{name}_%{version}.zip
8 # Source0-md5:  e00deccf8817eec85ab5c0268d5a7bfb
9 URL:            http://tools.openoffice.org/dmake/
10 #BuildRequires: unzip
11 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
12
13 %description
14 Dmake is a build utility similar to GNU make or the Sun Studio dmake.
15 This utility has an irregular syntax. It is currently maintained by
16 the OpenOffice.org team as it is part of the OpenOffice.org build
17 environment.
18
19 %prep
20 %setup -q -n dmake
21
22 %build
23 %configure \
24         --datadir=%{_datadir}/dmake
25 %{__make}
26
27 %install
28 rm -rf $RPM_BUILD_ROOT
29 %{__make} install \
30         DESTDIR=$RPM_BUILD_ROOT
31 install -D man/dmake.tf $RPM_BUILD_ROOT%{_mandir}/man1/dmake.1
32
33 %files
34 %defattr(644,root,root,755)
35 %doc ChangeLog NEWS readme/release.txt readme/public/unix.txt 
36 %attr(755,root,root) %{_bindir}/%{name}
37 %{_datadir}/dmake
38 %{_mandir}/man1/dmake.1*
39
40 %clean
41 rm -rf $RPM_BUILD_ROOT
This page took 0.129068 seconds and 3 git commands to generate.