diff options
author | Carsten Haitzler <raster@rasterman.com> | 2012-09-27 03:09:17 +0000 |
---|---|---|
committer | Carsten Haitzler <raster@rasterman.com> | 2012-09-27 03:09:17 +0000 |
commit | 1049bac9054d254486b4fd481930d2e3fa7389f1 (patch) | |
tree | 42d7941320b5a95498c73d6713f188998a045d47 /spec/efl.spec.in | |
parent | 05ddd5fe2df500b018fd077359121653628cd44a (diff) |
and make a single efl.spec file.
SVN revision: 77108
Diffstat (limited to '')
-rw-r--r-- | spec/efl.spec.in (renamed from legacy/ephysics/ephysics.spec.in) | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/legacy/ephysics/ephysics.spec.in b/spec/efl.spec.in index 0a18043f59..01ddcd7831 100644 --- a/legacy/ephysics/ephysics.spec.in +++ b/spec/efl.spec.in | |||
@@ -1,37 +1,39 @@ | |||
1 | %{!?_rel:%{expand:%%global _rel 0.enl%{?dist}}} | 1 | %{!?_rel:%{expand:%%global _rel 0.enl%{?dist}}} |
2 | %define _missing_doc_files_terminate_build 0 | 2 | %define _missing_doc_files_terminate_build 0 |
3 | 3 | ||
4 | Summary: ephysics library | 4 | Summary: Enlightenment Foundation Libraries |
5 | Name: @PACKAGE@ | 5 | Name: efl |
6 | Version: @VERSION@ | 6 | Version: @VERSION@ |
7 | Release: %{_rel} | 7 | Release: %{_rel} |
8 | License: MIT | 8 | License: LGPLv2.1 GPLv2.1 BSD |
9 | Group: System Environment/Libraries | 9 | Group: System Environment/Libraries |
10 | Source: http://download.enlightenment.org/releases/%{name}-%{version}.tar.gz | 10 | Source: http://download.enlightenment.org/releases/%{name}-%{version}.tar.gz |
11 | Packager: %{?_packager:%{_packager}}%{!?_packager:Rui Miguel Seabra <rms@1407.org>} | 11 | Packager: %{?_packager:%{_packager}}%{!?_packager:The Enlightenment Project <enlightenment-devel@lists.sourceforge.net>} |
12 | Vendor: %{?_vendorinfo:%{_vendorinfo}}%{!?_vendorinfo:The Enlightenment Project (http://www.enlightenment.org/)} | 12 | Vendor: %{?_vendorinfo:%{_vendorinfo}}%{!?_vendorinfo:The Enlightenment Project (http://www.enlightenment.org/)} |
13 | Distribution: %{?_distribution:%{_distribution}}%{!?_distribution:%{_vendor}} | 13 | Distribution: %{?_distribution:%{_distribution}}%{!?_distribution:%{_vendor}} |
14 | URL: http://www.enlightenment.org/ | 14 | URL: http://www.enlightenment.org/ |
15 | BuildRequires: libjpeg-devel zlib-devel | ||
15 | BuildRoot: %{_tmppath}/%{name}-%{version}-root | 16 | BuildRoot: %{_tmppath}/%{name}-%{version}-root |
16 | 17 | ||
17 | %description | 18 | %description |
18 | EPhysics is a library that manages Ecore, Evas and Bullet Physics into | 19 | EFL is a copllection of libraries ranging from data structure handling |
19 | an easy to use way. It's a kind of wrapper, a glue, between these libraries. | 20 | through to communications, rendering and widgets. |
20 | It's not intended to be a physics library (we already have many out there). | ||
21 | 21 | ||
22 | %package devel | 22 | %package devel |
23 | Summary: EPhysics headers, static libraries, documentation and test programs | 23 | Summary: EFL headers, static libraries, documentation and test programs |
24 | Group: System Environment/Libraries | 24 | Group: System Environment/Libraries |
25 | Requires: %{name} = %{version} | 25 | Requires: %{name} = %{version} |
26 | 26 | ||
27 | %description devel | 27 | %description devel |
28 | Headers, static libraries, test programs and documentation for EPhysics | 28 | Headers, static libraries, test programs and documentation for EFL |
29 | 29 | ||
30 | %prep | 30 | %prep |
31 | %setup -q | 31 | %setup -q |
32 | 32 | ||
33 | %build | 33 | %build |
34 | %{configure} --prefix=%{_prefix} | 34 | %{configure} --prefix=%{_prefix} |
35 | ### use this if you have build problems | ||
36 | #./configure --prefix=%{_prefix} | ||
35 | %{__make} %{?_smp_mflags} %{?mflags} | 37 | %{__make} %{?_smp_mflags} %{?mflags} |
36 | 38 | ||
37 | %install | 39 | %install |
@@ -48,19 +50,18 @@ test "x$RPM_BUILD_ROOT" != "x/" && rm -rf $RPM_BUILD_ROOT | |||
48 | 50 | ||
49 | %files | 51 | %files |
50 | %defattr(-, root, root) | 52 | %defattr(-, root, root) |
51 | %doc AUTHORS COPYING README | 53 | %doc AUTHORS README NEWS COPYING licenses/COPYING.BSD licenses/COPYING.LGPL licenses/COPYING.GPL |
52 | %{_bindir}/* | 54 | %{_bindir}/* |
53 | %{_libdir}/*.so.* | 55 | %{_libdir}/*.so.* |
54 | %dir %{_datadir}/ephysics/ | ||
55 | %{_datadir}/ephysics/*.edj | ||
56 | %{_datadir}/ephysics/*.png | ||
57 | 56 | ||
58 | %files devel | 57 | %files devel |
59 | %defattr(-, root, root) | 58 | %defattr(-, root, root) |
60 | %{_includedir}/* | 59 | %{_includedir}/* |
60 | %{_libdir}/pkgconfig/* | ||
61 | %{_libdir}/*.a | 61 | %{_libdir}/*.a |
62 | %{_libdir}/*.so | 62 | %{_libdir}/*.so |
63 | %{_libdir}/*.la | 63 | %{_libdir}/*.la |
64 | %{_libdir}/pkgconfig/* | 64 | %{_datadir}/eina |
65 | %{_datadir}/eet | ||
65 | 66 | ||
66 | %changelog | 67 | %changelog |