1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
#sbs-git:slp/pkgs/e/edje edje 1.1.0+svn.69011slp2+build03 96cd9783918ce594c786d12a5107be27aec4d34b
Name: edje
Summary: Complex Graphical Design/Layout Engine
Version: 1.7.1+svn.77330+build31
Release: 1
Group: System/Libraries
License: BSD
URL: http://www.enlightenment.org/
Source0: %{name}-%{version}.tar.gz
Requires(post): /sbin/ldconfig
Requires(postun): /sbin/ldconfig
BuildRequires: pkgconfig(ecore)
BuildRequires: pkgconfig(ecore-evas)
BuildRequires: pkgconfig(ecore-file)
BuildRequires: pkgconfig(ecore-imf)
BuildRequires: pkgconfig(ecore-imf-evas)
BuildRequires: pkgconfig(eet)
BuildRequires: pkgconfig(eina)
BuildRequires: pkgconfig(embryo)
BuildRequires: pkgconfig(evas)
BuildRequires: pkgconfig(lua)
#BuildRequires: pkgconfig(remix)
#BuildRequires: pkgconfig(flac)
#BuildRequires: pkgconfig(sndfile)
#BuildRequires: pkgconfig(libpulse)
%description
Various binaries for use with libedje
Edje is a graphical layout and animation library for animated resizable,
compressed and scalable themes. It is the theming engine behind
Enlightenment DR 0.17.
.
This package contains the following binaries:
- edje_cc: Compiles EDC files.
- edje_decc: Used to decompile compiled edje files.
- edje_recc: A convenience script to recompile EDC files.
%package devel
Summary: Complex Graphical Design/Layout Engine (devel)
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
%description devel
Edje is a graphical layout and animation library (devel)
%package tools
Summary: Complex Graphical Design/Layout Engine (tools)
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
Provides: %{name}-bin
Obsoletes: %{name}-bin
%description tools
Edje is a graphical layout and animation library (tools)
%prep
%setup -q
%build
export CFLAGS+=" -fvisibility=hidden -ffast-math -fPIC"
export LDFLAGS+=" -fvisibility=hidden -Wl,--hash-style=both -Wl,--as-needed"
%autogen --disable-static --disable-multisense
%configure --disable-static --disable-multisense
make %{?jobs:-j%jobs}
%install
rm -rf %{buildroot}
%make_install
mkdir -p %{buildroot}/usr/share/license
cp %{_builddir}/%{buildsubdir}/COPYING %{buildroot}/usr/share/license/%{name}
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-,root,root,-)
%{_libdir}/libedje.so.*
%{_datadir}/mime/packages/edje.xml
#%{_libdir}/edje/modules/multisense_factory/*/module.so
/usr/share/license/%{name}
#%{_libdir}/remix/*.so*
%manifest %{name}.manifest
%files devel
%defattr(-,root,root,-)
%{_includedir}/edje-1/*.h
%{_libdir}/libedje.so
%{_libdir}/pkgconfig/edje.pc
%exclude /usr/share/edje/examples/*
%files tools
%defattr(-,root,root,-)
%{_bindir}/*
%{_libdir}/%{name}/utils/epp
%{_datadir}/%{name}/include/edje.inc
|