add packaging files
authorAnas Nashif <anas.nashif@intel.com>
Wed, 24 Oct 2012 16:31:15 +0000 (09:31 -0700)
committerEduardo Lima (Etrunko) <eduardo.lima@intel.com>
Tue, 13 Aug 2013 20:49:38 +0000 (17:49 -0300)
packaging/elementary.spec [new file with mode: 0644]

diff --git a/packaging/elementary.spec b/packaging/elementary.spec
new file mode 100644 (file)
index 0000000..32246ea
--- /dev/null
@@ -0,0 +1,83 @@
+Name:           elementary
+Version:        1.7.1
+Release:        1
+License:        LGPLV2.1+
+Summary:        EFL toolkit for small touchscreens
+Url:            http://trac.enlightenment.org/e/wiki/Elementary
+Group:          Graphics/X11
+Source0:        elementary-%{version}.tar.gz
+BuildRequires:  doxygen
+BuildRequires:  pkgconfig(ecore)
+BuildRequires:  pkgconfig(ecore-evas)
+BuildRequires:  pkgconfig(ecore-fb)
+BuildRequires:  pkgconfig(ecore-file)
+BuildRequires:  pkgconfig(ecore-imf)
+BuildRequires:  pkgconfig(ecore-x)
+BuildRequires:  pkgconfig(edbus)
+BuildRequires:  pkgconfig(edje)
+BuildRequires:  pkgconfig(eet)
+BuildRequires:  pkgconfig(efreet)
+BuildRequires:  pkgconfig(eina)
+BuildRequires:  pkgconfig(evas)
+BuildRequires:  pkgconfig(x11)
+BuildRequires:  python-devel
+
+%description
+Elementary is a widget set. It is a new-style of widget set much more canvas
+object based than anything else. Why not ETK? Why not EWL? Well they both
+tend to veer away from the core of Evas, Ecore and Edje a lot to build their
+own worlds. Also I wanted something focused on embedded devices -
+specifically small touchscreens. Unlike GTK+ and Qt, 75% of the "widget set"
+is already embodied in a common core - Ecore, Edje, Evas etc. So this
+fine-grained library splitting means all of this is shared, just a new
+widget "personality" is on top. And that is... Elementary, my dear watson.
+Elementary.
+
+%package devel
+Summary:        Development components for the elementary package
+Group:          Development/Libraries
+Requires:       %{name} = %{version}
+
+%description devel
+Development files for elementary
+
+%prep
+%setup -q
+
+
+%build
+
+%configure --disable-static
+make %{?_smp_mflags}
+
+%install
+%make_install
+
+
+%find_lang %{name}
+
+%post -p /sbin/ldconfig
+
+%postun -p /sbin/ldconfig
+
+%files -f %{name}.lang
+%defattr(-,root,root,-)
+%doc COPYING
+%{_bindir}/*
+%{_libdir}/edje/*
+%{_libdir}/elementary/*
+%{_libdir}/*.so.*
+%{_datadir}/applications/*
+%{_datadir}/elementary/*
+%{_datadir}/icons/elementary.png
+
+
+%files devel
+%defattr(-,root,root,-)
+%{_includedir}/elementary-1/*.h
+%{_libdir}/*.so
+%{_libdir}/pkgconfig/*.pc
+
+
+
+%changelog