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-vfs
|
|
|
|
PKG_VERSION:=2.24.2
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
|
|
PKG_SOURCE_URL:=http://ftp.gnome.org/pub/gnome/sources/gnome-vfs/2.24/
|
|
|
|
PKG_INSTALL:=1
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2011-02-06 21:40:58 +02:00
|
|
|
include $(INCLUDE_DIR)/nls.mk
|
2009-12-28 19:00:25 +02:00
|
|
|
|
|
|
|
define Package/gnome-vfs
|
|
|
|
TITLE:=gnome-vfs
|
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
2011-02-06 21:40:58 +02:00
|
|
|
DEPENDS:=@BROKEN $(INTL_DEPENDS) +libpopt +gnome-mime-data
|
2009-12-28 19:00:25 +02:00
|
|
|
URL:=
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/gnome-vfs/description
|
|
|
|
endef
|
|
|
|
|
|
|
|
TARGET_LDFLAGS+= \
|
2011-02-06 21:40:58 +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/
|
|
|
|
$(CP) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/include/* \
|
|
|
|
$(1)/usr/include/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/gnome-vfs/install
|
|
|
|
$(INSTALL_DIR) \
|
|
|
|
$(1)/usr/lib \
|
|
|
|
$(CP) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/lib/gnome-vfs*.so* \
|
|
|
|
$(1)/usr/lib/
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,gnome-vfs))
|