]> git.pld-linux.org Git - packages/construo.git/blob - construo.spec
- %install should begin with rm -rf $RPM_BUILD_ROOT; unified %install a little
[packages/construo.git] / construo.spec
1 Summary:        Simple 2D construction programme
2 Summary(pl.UTF-8):      Prosty program do tworzenia dwuwymiarowych konstrukcji
3 Name:           construo
4 Version:        0.2.2
5 Release:        3
6 License:        GPL
7 Group:          X11/Amusements
8 Source0:        http://freesoftware.fsf.org/download/construo/construo.pkg/%{version}/%{name}-%{version}.tar.gz
9 # Source0-md5:  c18144898f98929b67245c5f703f9f39
10 Patch0:         %{name}-no_games.patch
11 URL:            http://www.nongnu.org/construo/
12 BuildRequires:  autoconf
13 BuildRequires:  automake
14 BuildRequires:  glut-devel
15 BuildRequires:  libstdc++-devel
16 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
17
18 %description
19 Construo is a programme for constructing wire-frame objects and let
20 them react on physical forces, its neither a real simulation nor a
21 real game, its just a little toy app which can be a nice way to waste
22 time.
23
24 %description -l pl.UTF-8
25 Construo to program do konstruowania obiektów w postaci modeli
26 drutowych i umożliwiania im reagowania na siły fizyczne - nie jest to
27 prawdziwa symulacja ani prawdziwa gra, jedynie mała aplikacja do
28 zabawy, mogąca być miłym sposobem marnowania czasu.
29
30 %prep
31 %setup -q
32 %patch0 -p1
33
34 %build
35 %{__aclocal}
36 %{__autoconf}
37 %{__automake}
38 %configure \
39         --disable-debug
40 %{__make}
41
42 %install
43 rm -rf $RPM_BUILD_ROOT
44
45 %{__make} install \
46         DESTDIR=$RPM_BUILD_ROOT
47
48 %clean
49 rm -rf $RPM_BUILD_ROOT
50
51 %files
52 %defattr(644,root,root,755)
53 %doc AUTHORS NEWS README TODO
54 %attr(755,root,root) %{_bindir}/*
55 %{_datadir}/%{name}
This page took 0.071701 seconds and 3 git commands to generate.