2008-11-16 19:31:42 +00:00
#
2008-11-27 22:24:56 +00:00
# Copyright (C) 2006-2008 OpenWrt.org
2008-11-16 19:31:42 +00:00
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
# $Id: Makefile 12228 2008-08-06 22:43:15Z nbd $
i n c l u d e $( TOPDIR ) / r u l e s . m k
PKG_NAME := eet
2008-11-27 22:24:56 +00:00
PKG_REV := 37637
PKG_VERSION := r$( PKG_REV)
2008-11-16 19:31:42 +00:00
PKG_RELEASE := 1
PKG_SOURCE_PROTO := svn
2008-11-27 22:24:56 +00:00
PKG_SOURCE_VERSION := $( PKG_REV)
2008-11-16 19:31:42 +00:00
PKG_SOURCE_SUBDIR := $( PKG_NAME) -$( PKG_VERSION)
PKG_SOURCE := $( PKG_NAME) -$( PKG_VERSION) .tar.gz
2008-11-27 22:24:56 +00:00
PKG_SOURCE_URL := http://svn.enlightenment.org/svn/e/trunk/$( PKG_NAME)
2008-11-16 19:31:42 +00:00
PKG_BUILD_DIR = $( BUILD_DIR) /Xorg/$( _CATEGORY) /$( PKG_NAME) -$( PKG_VERSION) /
PKG_FIXUP = libtool
i n c l u d e $( INCLUDE_DIR ) / p a c k a g e . m k
d e f i n e P a c k a g e / e e t
SECTION:= xorg-lib
CATEGORY:= Xorg
2009-01-09 17:10:38 +00:00
SUBMENU:= libraries
2008-11-16 19:31:42 +00:00
TITLE:= EET is a tiny library designed to write an arbitary set of chunks of data to a file
URL:= http://wiki.enlightenment.org/index.php/Eet
DEPENDS:= +libjpeg +zlib +eina
e n d e f
d e f i n e P a c k a g e / e e t / d e s c r i p t i o n
EET is a tiny library designed to write an arbitary set of chunks of data to a file and optionally compress each chunk ( very much like a zip file) and allow fast random-access reading of the file later on. EET files are perfect for storing data that is written once ( or rarely) and read many times, especially when the program does not want to have to read all the data in at once.
e n d e f
d e f i n e B u i l d / C o n f i g u r e
( cd $( PKG_BUILD_DIR) ; NOCONFIGURE = YES ./autogen.sh ) ;
$( call Build/Configure/Default, \
--disable-openssl \
2008-12-09 00:49:05 +00:00
--disable-gnutls \
2008-11-16 19:31:42 +00:00
)
e n d e f
d e f i n e B u i l d / C o m p i l e
DESTDIR = " $( PKG_INSTALL_DIR) " $( MAKE) -C $( PKG_BUILD_DIR) all install
e n d e f
d e f i n e B u i l d / I n s t a l l D e v
$( INSTALL_DIR) $( 1) /usr/include $( 1) /usr/lib $( 1) /usr/bin
$( CP) $( PKG_INSTALL_DIR) /usr/include/* $( 1) /usr/include/
$( CP) $( PKG_INSTALL_DIR) /usr/lib/* $( 1) /usr/lib/
$( CP) $( PKG_INSTALL_DIR) /usr/bin/* $( 1) /usr/bin/
e n d e f
d e f i n e P a c k a g e / e e t / i n s t a l l
$( INSTALL_DIR) $( 1) /usr/lib $( 1) /usr/bin
$( CP) $( PKG_INSTALL_DIR) /usr/lib/*.so* $( 1) /usr/lib/
$( CP) $( PKG_INSTALL_DIR) /usr/bin/* $( 1) /usr/bin/
e n d e f
$( eval $ ( call BuildPackage ,eet ) )