2009-11-02 09:30:02 +02:00
|
|
|
#
|
|
|
|
# Copyright (C) 2008 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=dfbmp
|
|
|
|
PKG_VERSION:=0.1.1
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2010-04-03 16:21:47 +03:00
|
|
|
PKG_SOURCE_URL:=http://www.maui-systems.org/oss/dfbmp
|
2009-11-02 09:30:02 +02:00
|
|
|
|
|
|
|
PKG_INSTALL:=1
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/dfbmp
|
|
|
|
TITLE:=dfbmp
|
|
|
|
SECTION:=sound
|
|
|
|
CATEGORY:=Sound
|
2010-04-03 22:47:54 +03:00
|
|
|
DEPENDS:=@BROKEN +libcurl +libfreetype +zlib
|
2009-11-02 09:30:02 +02:00
|
|
|
URL:=http://www.maui-systems.org/opensource/dfbmp/index.php
|
|
|
|
endef
|
|
|
|
|
|
|
|
TARGET_CFLAGS+=-lcurl -lssl -lcrypto -lz
|
|
|
|
|
|
|
|
define Package/dfbmp/description
|
|
|
|
This code is a very simplistic DirectFB client for MPD
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
|
|
|
( cd $(PKG_BUILD_DIR); ./autogen.sh );
|
|
|
|
$(call Build/Configure/Default)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/dfbmp/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
|
|
$(INSTALL_DIR) $(1)/usr/share/dfbmp/
|
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/dfbmp $(1)/usr/bin/
|
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/share/dfbmp/decker.ttf $(1)/usr/share/dfbmp/
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,dfbmp))
|