]> git.pld-linux.org Git - packages/Field3D.git/blame - Field3D.spec
- updated to 1.7.3
[packages/Field3D.git] / Field3D.spec
CommitLineData
58986a90 1# TODO: (optional) MPI?
db37bf04
JB
2Summary: Field3D - open source library for storing voxel data
3Summary(pl.UTF-8): Field3D - mająca otwarte źródła biblioteka do przechowywania danych vokseli
4Name: Field3D
f8c1ddc2 5Version: 1.7.3
58986a90 6Release: 1
db37bf04
JB
7License: BSD
8Group: Libraries
58986a90
JB
9#Source0Download: https://github.com/imageworks/Field3D/releases
10Source0: http://github.com/imageworks/Field3D/archive/v%{version}/%{name}-%{version}.tar.gz
f8c1ddc2 11# Source0-md5: 536198b1b4840a5b35400ccf05d4431c
db37bf04
JB
12URL: http://opensource.imageworks.com/?p=field3d
13BuildRequires: cmake >= 2.8
14BuildRequires: boost-devel >= 1.34.0
15BuildRequires: doxygen
16BuildRequires: hdf5-devel >= 1.8
17BuildRequires: ilmbase-devel >= 1.0.1
18BuildRequires: libstdc++-devel
19Requires: hdf5 >= 1.8
20Requires: ilmbase >= 1.0.1
21BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
22
23%description
24Field3D is an open source library for storing voxel data. It provides
25C++ classes that handle in-memory storage and a file format based on
26HDF5 that allows the C++ objects to be written to and read from disk.
27
28%description -l pl.UTF-8
29Field3D to mająca otwarte źródła biblioteka do przechowywania danych
30vokseli. Udostępnia klasy C++ obsługujące przechowywanie ich w pamięci
31oraz format plików oparty na HDF5 pozwalający na zapis i odczyt
32obiektów C++ z dysku.
33
34%package devel
35Summary: Header files for Field3D library
36Summary(pl.UTF-8): Pliki nagłówkowe biblioteki Field3D
37Group: Development/Libraries
38Requires: %{name} = %{version}-%{release}
39Requires: boost-devel >= 1.34.0
40Requires: hdf5-devel >= 1.8
41Requires: ilmbase-devel >= 1.0.1
42Requires: libstdc++-devel
43
44%description devel
45Header files for Field3D library.
46
47%description devel -l pl.UTF-8
48Pliki nagłówkowe biblioteki Field3D.
49
50%package apidocs
51Summary: Field3D API documentation
52Summary(pl.UTF-8): Dokumentacja API biblioteki Field3D
53Group: Documentation
7b8e8292
ER
54%if "%{_rpmversion}" >= "5"
55BuildArch: noarch
56%endif
db37bf04
JB
57
58%description apidocs
59API and internal documentation for Field3D library.
60
61%description apidocs -l pl.UTF-8
62Dokumentacja API biblioteki Field3D.
63
64%prep
58986a90 65%setup -q
db37bf04
JB
66
67%build
68# main build system is scons, but there is cmake alternative, which is slightly more usable in rpm building
69install -d build
70cd build
71%cmake ..
72
73%{__make}
74
75%install
76rm -rf $RPM_BUILD_ROOT
77
78%{__make} -C build install \
79 DESTDIR=$RPM_BUILD_ROOT
80
81%{__rm} -r $RPM_BUILD_ROOT%{_prefix}/docs
82
83%clean
84rm -rf $RPM_BUILD_ROOT
85
86%post -p /sbin/ldconfig
87%postun -p /sbin/ldconfig
88
89%files
90%defattr(644,root,root,755)
91%doc CHANGES COPYING README
92%attr(755,root,root) %{_bindir}/f3dinfo
58986a90
JB
93%attr(755,root,root) %{_libdir}/libField3D.so.*.*.*
94%attr(755,root,root) %ghost %{_libdir}/libField3D.so.1.7
db37bf04
JB
95
96%files devel
97%defattr(644,root,root,755)
08b11139 98%attr(755,root,root) %{_libdir}/libField3D.so
db37bf04
JB
99%{_includedir}/Field3D
100
101%files apidocs
102%defattr(644,root,root,755)
103%doc docs/html/*.{css,html,js,png}
This page took 0.038651 seconds and 4 git commands to generate.