aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/eina/eina.spec
diff options
context:
space:
mode:
authorDavid Walter Seikel2012-01-04 18:41:13 +1000
committerDavid Walter Seikel2012-01-04 18:41:13 +1000
commitdd7595a3475407a7fa96a97393bae8c5220e8762 (patch)
treee341e911d7eb911a51684a7412ef7f7c7605d28e /libraries/eina/eina.spec
parentAdd the skeleton. (diff)
downloadSledjHamr-dd7595a3475407a7fa96a97393bae8c5220e8762.zip
SledjHamr-dd7595a3475407a7fa96a97393bae8c5220e8762.tar.gz
SledjHamr-dd7595a3475407a7fa96a97393bae8c5220e8762.tar.bz2
SledjHamr-dd7595a3475407a7fa96a97393bae8c5220e8762.tar.xz
Add the base Enlightenment Foundation Libraries - eina, eet, evas, ecore, embryo, and edje.
Note that embryo wont be used, but I'm not sure yet if you can build edje without it.
Diffstat (limited to 'libraries/eina/eina.spec')
-rw-r--r--libraries/eina/eina.spec60
1 files changed, 60 insertions, 0 deletions
diff --git a/libraries/eina/eina.spec b/libraries/eina/eina.spec
new file mode 100644
index 0000000..c325f06
--- /dev/null
+++ b/libraries/eina/eina.spec
@@ -0,0 +1,60 @@
1%{!?_rel:%{expand:%%global _rel 0.enl%{?dist}}}
2%define _missing_doc_files_terminate_build 0
3
4Summary: Data Type Library
5Name: eina
6Version: 1.1.0
7Release: %{_rel}
8License: LGPLv2.1
9Group: System Environment/Libraries
10Source: http://download.enlightenment.org/releases/%{name}-%{version}.tar.gz
11Packager: %{?_packager:%{_packager}}%{!?_packager:Michael Jennings <mej@eterm.org>}
12Vendor: %{?_vendorinfo:%{_vendorinfo}}%{!?_vendorinfo:The Enlightenment Project (http://www.enlightenment.org/)}
13Distribution: %{?_distribution:%{_distribution}}%{!?_distribution:%{_vendor}}
14URL: http://www.enlightenment.org/
15BuildRoot: %{_tmppath}/%{name}-%{version}-root
16
17%description
18Eina is a data type library.
19
20%package devel
21Summary: Eina headers, static libraries, documentation and test programs
22Group: System Environment/Libraries
23Requires: %{name} = %{version}
24
25%description devel
26Headers, static libraries, test programs and documentation for Eina
27
28%prep
29%setup -q
30
31%build
32%{configure} --prefix=%{_prefix}
33%{__make} %{?_smp_mflags} %{?mflags}
34
35%install
36%{__make} %{?mflags_install} DESTDIR=$RPM_BUILD_ROOT install
37
38%clean
39test "x$RPM_BUILD_ROOT" != "x/" && rm -rf $RPM_BUILD_ROOT
40
41%post
42/sbin/ldconfig
43
44%postun
45/sbin/ldconfig
46
47%files
48%defattr(-, root, root)
49%doc AUTHORS COPYING README
50%{_libdir}/*.so.*
51
52%files devel
53%defattr(-, root, root)
54%{_includedir}/*
55%{_libdir}/*.a
56%{_libdir}/*.so
57%{_libdir}/*.la
58%{_libdir}/pkgconfig/*
59
60%changelog