Signed-off-by: Ryan M. Raasch <[email protected]> --- rules/eet.in | 17 ++++++++++++++++ rules/eet.make | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 76 insertions(+), 0 deletions(-) create mode 100644 rules/eet.in create mode 100644 rules/eet.make
diff --git a/rules/eet.in b/rules/eet.in new file mode 100644 index 0000000..292cb67 --- /dev/null +++ b/rules/eet.in @@ -0,0 +1,17 @@ +## SECTION=multimedia_efl + +config EET + tristate + select ZLIB + select LIBJPEG + prompt "eet" + help + EET is a library that is designed to store and load + all type of data, locally or through a network stream. + It is designed to be light-weight, efficient and quick. + EET forms the basis of theme files in the EFL, i.e. + if you want to install a theme for Enlightenment or + another themable EFL app, you would be installing + an EET-format file, which contains all of the theme graphics + and configuration and do not need to be extracted onto the + filesystem in order to be used. diff --git a/rules/eet.make b/rules/eet.make new file mode 100644 index 0000000..26eebf7 --- /dev/null +++ b/rules/eet.make @@ -0,0 +1,59 @@ +# -*-makefile-*- +# +# Copyright (C) 2010 by <Ryan Raasch [email protected]> +# +# See CREDITS for details about who has contributed to this project. +# +# For further information about the PTXdist project and license conditions +# see the README file. +# + +# +# We provide this package +# +PACKAGES-$(PTXCONF_EET) += eet + +# +# Paths and names +# +EET_VERSION := 1.3.2 +EET := eet-$(EET_VERSION) +EET_SUFFIX := tar.bz2 +EET_URL := http://download.enlightenment.org/releases/$(EET).$(EET_SUFFIX) +EET_SOURCE := $(SRCDIR)/$(EET).$(EET_SUFFIX) +EET_DIR := $(BUILDDIR)/$(EET) + +# ---------------------------------------------------------------------------- +# Prepare +# ---------------------------------------------------------------------------- + +EET_CONF_ENV := $(CROSS_ENV) + +# +# autoconf +# +EET_CONF_TOOL := autoconf +EET_CONF_OPT := \ + $(CROSS_AUTOCONF_USR) \ + --disable-doc + +# ---------------------------------------------------------------------------- +# Target-Install +# ---------------------------------------------------------------------------- + +$(STATEDIR)/eet.targetinstall: + @$(call targetinfo) + + @$(call install_init, eet) + @$(call install_fixup, eet,PRIORITY,optional) + @$(call install_fixup, eet,SECTION,base) + @$(call install_fixup, eet,AUTHOR,"<Ryan Raasch [email protected]>") + @$(call install_fixup, eet,DESCRIPTION,missing) + + @$(call install_lib, eet, 0, 0, 0644, libeet) + + @$(call install_finish, eet) + + @$(call touch) + +# vim: syntax=make -- 1.7.1.rc1.GIT -- ptxdist mailing list [email protected]
