2009-12-28 19:00:25 +02:00
|
|
|
#
|
|
|
|
# Copyright (C) 2009 Qi Hardware Inc.
|
|
|
|
# Author: Xiangfu Liu <xiangfu@qi-hardware.com>
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=gnome-mime-data
|
|
|
|
PKG_VERSION:=2.4.3
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
|
|
PKG_SOURCE_URL:=http://ftp.acc.umu.se/pub/gnome/sources/gnome-mime-data/2.4/
|
|
|
|
PKG_INSTALL:=1
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2011-02-06 21:16:29 +02:00
|
|
|
include $(INCLUDE_DIR)/nls.mk
|
2009-12-28 19:00:25 +02:00
|
|
|
|
|
|
|
define Package/gnome-mime-data
|
|
|
|
TITLE:=gnome-mime-data
|
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
2011-02-06 21:16:29 +02:00
|
|
|
DEPENDS:=$(INTL_DEPENDS)
|
2009-12-28 19:00:25 +02:00
|
|
|
URL:=
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/gnome-mime-data/description
|
|
|
|
endef
|
2011-02-06 21:16:29 +02:00
|
|
|
|
2009-12-28 19:00:25 +02:00
|
|
|
define Build/Configure
|
|
|
|
$(call Build/Configure/Default,)
|
|
|
|
endef
|
|
|
|
|
|
|
|
TARGET_LDFLAGS+= \
|
2011-02-06 21:16:29 +02:00
|
|
|
-Wl,-rpath-link=$(STAGING_DIR)/usr/lib
|
2009-12-28 19:00:25 +02:00
|
|
|
|
|
|
|
define Build/InstallDev
|
|
|
|
$(INSTALL_DIR) \
|
|
|
|
$(1)/usr/include \
|
|
|
|
$(1)/usr/lib
|
|
|
|
$(CP) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/lib/* \
|
|
|
|
$(1)/usr/lib/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/gnome-mime-data/install
|
|
|
|
$(INSTALL_DIR) \
|
|
|
|
$(1)/usr/lib
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,gnome-mime-data))
|