Upgrade linux-uvc to revision 244 (#3930)
[openwrt/svn-archive/archive.git] / libs / file / Makefile
1 #
2 # Copyright (C) 2007 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=file
12 PKG_VERSION:=4.19
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=ftp://ftp.astron.com/pub/file/
17 PKG_MD5SUM:=a61ef3aa8339d5987148089afde25f60
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/libmagic
22 SECTION:=libs
23 CATEGORY:=Libraries
24 DEPENDS:=+zlib
25 TITLE:=Determines file type using "magic" numbers
26 URL:=ftp://ftp.astron.com/pub/file/
27 endef
28
29 define Package/file
30 SECTION:=utils
31 CATEGORY:=Utilities
32 DEPENDS:=+libmagic
33 TITLE:=Determines file type using "magic" numbers
34 URL:=ftp://ftp.astron.com/pub/file/
35 endef
36
37 define Package/file/description
38 File tests each argument in an attempt to classify it. There
39 are three sets of tests, performed in this order: filesystem
40 tests, magic number tests, and language tests. The first test
41 that succeeds causes the file type to be printed.
42
43 Starting with version 4, the file command is not much more than
44 a wrapper around the "magic" library.
45 endef
46
47 TARGET_CFLAGS += $(FPIC)
48
49 CONFIGURE_ARGS += \
50 --enable-shared \
51 --enable-static \
52 --disable-rpath \
53 --without-libiconv-prefix \
54 --without-libintl-prefix \
55
56 MAKE_FLAGS += \
57 -C $(PKG_BUILD_DIR)/src \
58 DESTDIR="$(PKG_INSTALL_DIR)" \
59 all install \
60
61 define Build/InstallDev
62 mkdir -p $(1)/usr/include
63 $(CP) $(PKG_INSTALL_DIR)/usr/include/magic.h $(1)/usr/include/
64 mkdir -p $(1)/usr/lib
65 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libmagic.{a,so*} $(1)/usr/lib/
66 endef
67
68 define Package/libmagic/install
69 $(INSTALL_DIR) $(1)/usr/lib
70 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libmagic.so.* $(1)/usr/lib/
71 endef
72
73 define Package/file/install
74 $(INSTALL_DIR) $(1)/usr/bin
75 $(INSTALL_DIR) $(1)/usr/share/file
76 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/file $(1)/usr/bin
77 $(INSTALL_DATA) $(PKG_BUILD_DIR)/magic/Magdir/linux $(1)/usr/share/file/magic
78 $(INSTALL_DATA) $(PKG_BUILD_DIR)/magic/magic.mime $(1)/usr/share/file/magic.mime
79 endef
80
81 $(eval $(call BuildPackage,libmagic))
82 $(eval $(call BuildPackage,file))