]> git.pld-linux.org Git - packages/aero.git/blob - aero.spec
- tabs in preamble
[packages/aero.git] / aero.spec
1 Summary:        Simulation program based on rigid body systems
2 Summary(pl.UTF-8):      Program do symulacji opartych na układach bryły sztywnej
3 Name:           aero
4 Version:        1.7.0
5 Release:        0.1
6 License:        Public Domain
7 Group:          Applications
8 Source0:        http://robotics.ee.uwa.edu.au/aero/ftp/%{name}_%{version}_src.tar.gz
9 # Source0-md5:  2ea6f065bc77162ce6b4f4c4a17a3636
10 URL:            http://robotics.ee.uwa.edu.au/aero/ftp/
11 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
12
13 %description
14 AERO is a simulation program based on rigid body systems. With the
15 built-in 3D editor you can create a virtual scene consisting of
16 spheres, boxes (cuboids), cylinders and plains. These objects may be
17 connected with links like spring, damper, rod and joint.
18
19 %description -l pl.UTF-8
20 AERO to program do symulacji opartych na układach bryły sztywnej. Przy
21 użyciu wbudowanego edytora 3D można tworzyć sceny wirtualne składające
22 się ze sfer, prostopadłościanów, cylindrów i płaszczyzn. Obiekty te
23 można łączyć elementami takimi jak sprężyny, tłumiki, pręty i złącza.
24
25 %prep
26 %setup -q -n %{name}
27 cp src/Makefile{.linux,}
28
29 %build
30
31 cd src 
32 %{__make} \
33         CFLAGS="%{rpmcflags}" \
34         LDFLAGS="%{rpmldflags}"
35
36 %install
37 rm -rf $RPM_BUILD_ROOT
38
39 %{__make} install \
40         DESTDIR=$RPM_BUILD_ROOT
41
42 %clean
43 rm -rf $RPM_BUILD_ROOT
44
45 %if %{with ldconfig}
46 %post   -p /sbin/ldconfig
47 %postun -p /sbin/ldconfig
48 %endif
49
50 %files
51 %defattr(644,root,root,755)
52 %doc AUTHORS CREDITS ChangeLog NEWS README THANKS TODO
53
54 %if 0
55 # if _sysconfdir != /etc:
56 #%%dir %{_sysconfdir}
57 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/*
58 %attr(755,root,root) %{_bindir}/*
59 %{_datadir}/%{name}
60 %endif
This page took 0.06193 seconds and 3 git commands to generate.