summaryrefslogtreecommitdiffstats
path: root/data
diff options
context:
space:
mode:
authorOlliver Schinagl <oliver@schinagl.nl>2015-01-24 13:53:43 (GMT)
committerOlliver Schinagl <oliver@schinagl.nl>2015-01-24 14:18:21 (GMT)
commit08cfb908c22c0c7b5aeb788569950718939b7465 (patch)
tree6602640dc6b8dafaa3605d9cc3e955e66581d1e9 /data
parente13c3bc4aeba38f4f70754d8e73985eafb23a290 (diff)
downloadeulogium-08cfb908c22c0c7b5aeb788569950718939b7465.zip
eulogium-08cfb908c22c0c7b5aeb788569950718939b7465.tar.gz
eulogium-08cfb908c22c0c7b5aeb788569950718939b7465.tar.bz2
EFL empty project
Signed-off-by: Olliver Schinagl <oliver@schinagl.nl>
Diffstat (limited to 'data')
-rw-r--r--data/Makefile.am3
-rw-r--r--data/desktop/Makefile.am9
-rw-r--r--data/desktop/eulogium.desktop.in12
-rw-r--r--data/desktop/eulogium.pngbin0 -> 82822 bytes
-rw-r--r--data/themes/Makefile.am4
-rw-r--r--data/themes/default/Makefile.am22
-rw-r--r--data/themes/default/default.edc21
-rw-r--r--data/themes/default/images/enlightenment.pngbin0 -> 2046 bytes
-rw-r--r--data/themes/default/sounds/bell.wavbin0 -> 242396 bytes
9 files changed, 71 insertions, 0 deletions
diff --git a/data/Makefile.am b/data/Makefile.am
new file mode 100644
index 0000000..2d4e6c1
--- /dev/null
+++ b/data/Makefile.am
@@ -0,0 +1,3 @@
+MAINTAINERCLEANFILES = Makefile.in
+
+SUBDIRS = themes desktop
diff --git a/data/desktop/Makefile.am b/data/desktop/Makefile.am
new file mode 100644
index 0000000..8a745a0
--- /dev/null
+++ b/data/desktop/Makefile.am
@@ -0,0 +1,9 @@
+MAINTAINERCLEANFILES = Makefile.in
+
+desktopdir = $(datadir)/applications
+desktop_DATA = eulogium.desktop
+
+icondir = $(datadir)/icons
+icon_DATA = eulogium.png
+
+EXTRA_DIST = $(desktop_DATA) $(icon_DATA)
diff --git a/data/desktop/eulogium.desktop.in b/data/desktop/eulogium.desktop.in
new file mode 100644
index 0000000..1bc380c
--- /dev/null
+++ b/data/desktop/eulogium.desktop.in
@@ -0,0 +1,12 @@
+[Desktop Entry]
+Encoding=UTF-8
+Version=@VERSION@
+Type=Application
+Name=@PACKAGE_NAME@
+Name[fr]=@PACKAGE_NAME@
+GenericName=Efl Application Skeletion
+Comment=Efl Application Eulogium
+Icon=@PACKAGE_NAME@
+TryExec=@PACKAGE_NAME@
+Exec=@PACKAGE_NAME@
+Categories=Development;Utility;
diff --git a/data/desktop/eulogium.png b/data/desktop/eulogium.png
new file mode 100644
index 0000000..9037bea
--- /dev/null
+++ b/data/desktop/eulogium.png
Binary files differ
diff --git a/data/themes/Makefile.am b/data/themes/Makefile.am
new file mode 100644
index 0000000..31a2b40
--- /dev/null
+++ b/data/themes/Makefile.am
@@ -0,0 +1,4 @@
+MAINTAINERCLEANFILES = Makefile.in
+
+SUBDIRS = default
+
diff --git a/data/themes/default/Makefile.am b/data/themes/default/Makefile.am
new file mode 100644
index 0000000..2612ac0
--- /dev/null
+++ b/data/themes/default/Makefile.am
@@ -0,0 +1,22 @@
+AUTOMAKE_OPTIONS = subdir-objects
+MAINTAINERCLEANFILES = Makefile.in
+
+EXTRA_DIST = \
+default.edc \
+images/enlightenment.png \
+sounds/bell.wav
+
+include ../../../Makefile_Edje_Helper.am
+
+filesdir = $(datadir)/$(PACKAGE)/themes
+files_DATA = default.edj
+
+default.edj: Makefile $(EXTRA_DIST)
+ $(AM_V_EDJ)$(EDJE_CC) $(EDJE_CC_FLAGS) \
+ -id ${top_srcdir}/data/themes/default/images \
+ -sd ${top_srcdir}/data/themes/default/sounds \
+ $(top_srcdir)/data/themes/default/default.edc \
+ $(top_builddir)/data/themes/default/default.edj
+
+clean-local:
+ rm -f *.edj
diff --git a/data/themes/default/default.edc b/data/themes/default/default.edc
new file mode 100644
index 0000000..b1bacd8
--- /dev/null
+++ b/data/themes/default/default.edc
@@ -0,0 +1,21 @@
+images.image: "enlightenment.png" COMP;
+
+collections {
+ sounds {
+ sample {
+ name: "bell" LOSSY 64;
+ source: "bell.wav";
+ }
+ }
+
+ group {
+ name: "test";
+ parts {
+ part { name: "main"; type: IMAGE;
+ description {
+ image.normal: "enlightenment.png";
+ }
+ }
+ }
+ }
+}
diff --git a/data/themes/default/images/enlightenment.png b/data/themes/default/images/enlightenment.png
new file mode 100644
index 0000000..759381d
--- /dev/null
+++ b/data/themes/default/images/enlightenment.png
Binary files differ
diff --git a/data/themes/default/sounds/bell.wav b/data/themes/default/sounds/bell.wav
new file mode 100644
index 0000000..c052881
--- /dev/null
+++ b/data/themes/default/sounds/bell.wav
Binary files differ