add a package for xfsprogs
[openwrt.git] / package / xfsprogs / Makefile
1
2 # Copyright (C) 2006-2008 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=xfsprogs
11 PKG_RELEASE:=1
12 PKG_VERSION:=3.1.4
13 PKG_SOURCE_URL:=http://ftp.debian.org/pool/main/x/xfsprogs
14 PKG_MD5SUM:=23568a603c913b80076abe3c23521573
15
16 PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).tar.gz
17 PKG_INSTALL:=1
18 PKG_FIXUP = libtool
19
20 include $(INCLUDE_DIR)/package.mk
21 include $(INCLUDE_DIR)/nls.mk
22
23 define Package/xfsprogs/default
24   SECTION:=utils
25   CATEGORY:=Utilities
26   DEPENDS:=+libuuid +libpthread +librt
27   URL:=http://oss.sgi.com/projects/xfs
28 endef
29
30 define Package/xfs-mkfs
31 $(call Package/xfsprogs/default)
32   TITLE:=Utility for creating XFS filesystems
33 endef
34
35 define Package/xfs-fsck
36 $(call Package/xfsprogs/default)
37   TITLE:=Utilities for checking and repairing XFS filesystems
38 endef
39
40 define Package/xfs-growfs
41 $(call Package/xfsprogs/default)
42   TITLE:=Utility for increasing the size of XFS filesystems
43 endef
44
45 TARGET_CFLAGS += \
46         -I$(STAGING_DIR)/usr/include \
47         -D_LARGEFILE64_SOURCE \
48         -D_FILE_OFFSET_BITS=64 \
49         -D_GNU_SOURCE
50
51 MAKE_FLAGS += \
52         DEBUG= Q= \
53         PCFLAGS="-Wall" \
54         PKG_PLATFORM=linux \
55         ENABLE_GETTEXT=no \
56         prefix=$(PKG_INSTALL_DIR)/usr \
57         exec_prefix=$(PKG_INSTALL_DIR)/usr \
58         PKG_SBIN_DIR=$(PKG_INSTALL_DIR)/usr/sbin \
59         PKG_ROOT_SBIN_DIR=$(PKG_INSTALL_DIR)/sbin \
60         PKG_MAN_DIR=$(PKG_INSTALL_DIR)/usr/man \
61         PKG_LOCALE_DIR=$(PKG_INSTALL_DIR)/usr/share/locale \
62         PKG_ROOT_LIB_DIR=$(PKG_INSTALL_DIR)/lib \
63         PKG_DOC_DIR=$(PKG_INSTALL_DIR)/usr/share/doc/xfsprogs
64
65 define Package/xfs-mkfs/install
66         mkdir -p $(1)/sbin
67         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/sbin/mkfs.xfs $(1)/sbin
68 endef
69
70 define Package/xfs-fsck/install
71         mkdir -p $(1)/sbin
72         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/sbin/xfs_repair $(1)/sbin
73         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/xfs_db $(1)/sbin
74 endef
75
76 define Package/xfs-growfs/install
77         mkdir -p $(1)/sbin
78         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/xfs_growfs $(1)/sbin
79 endef
80
81 $(eval $(call BuildPackage,xfs-mkfs))
82 $(eval $(call BuildPackage,xfs-fsck))
83 $(eval $(call BuildPackage,xfs-growfs))