packages/libs/file/Makefile
pavlov fa20e8deb3 make it so you can install 'file' itself rather than just the library
git-svn-id: svn://svn.openwrt.org/openwrt/packages@7968 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-07-13 14:12:55 +00:00

86 lines
1.9 KiB
Makefile

#
# Copyright (C) 2006 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
# $Id$
include $(TOPDIR)/rules.mk
PKG_NAME:=file
PKG_VERSION:=4.19
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=ftp://ftp.astron.com/pub/file/
PKG_MD5SUM:=a61ef3aa8339d5987148089afde25f60
PKG_CAT:=zcat
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
include $(INCLUDE_DIR)/package.mk
define Package/libmagic
SECTION:=libs
CATEGORY:=Libraries
DEPENDS:=+zlib
TITLE:=File type determination library
URL:=ftp://ftp.astron.com/pub/file/
endef
define Package/file
SECTION:=utils
CATEGORY:=Utilities
DEPENDS:=+libmagic
TITLE:=File type determination library
URL:=ftp://ftp.astron.com/pub/file/
endef
define Build/Configure
$(call Build/Configure/Default, \
--enable-shared \
--enable-static \
--disable-rpath \
--without-libiconv-prefix \
--without-libintl-prefix \
)
endef
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR)/src \
DESTDIR="$(PKG_INSTALL_DIR)" \
all install
endef
define Build/InstallDev
mkdir -p $(STAGING_DIR)/usr/include
$(CP) $(PKG_INSTALL_DIR)/usr/include/magic.h $(STAGING_DIR)/usr/include/
mkdir -p $(STAGING_DIR)/usr/lib
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libmagic.{a,so*} $(STAGING_DIR)/usr/lib/
endef
define Build/UninstallDev
rm -rf \
$(STAGING_DIR)/usr/include/magic.h \
$(STAGING_DIR)/usr/lib/libmagic.{a,so*}
endef
define Package/libmagic/install
$(INSTALL_DIR) $(1)/usr/lib
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libmagic.so.* $(1)/usr/lib/
endef
define Package/file/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_DIR) $(1)/usr/share/file
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/file \
$(1)/usr/bin
$(INSTALL_DATA) $(PKG_BUILD_DIR)/magic/Magdir/linux \
$(1)/usr/share/file/magic
endef
$(eval $(call BuildPackage,libmagic))
$(eval $(call BuildPackage,file))