8f9c6729c8d30d5f464e5c0fdc5e7b39f5b21e58
[packages.git] / utils / btrfs-progs / Makefile
1 #
2 # Copyright (C) 2009 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:=btrfs-progs
11 PKG_VERSION:=0.19
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://www.kernel.org/pub/linux/kernel/people/mason/btrfs/
16 PKG_MD5SUM:=69e29ecd922e3f9dcb74a3a8f80b4f68
17
18 include $(INCLUDE_DIR)/package.mk
19
20 define Package/btrfs-progs
21   SECTION:=utils
22   CATEGORY:=Utilities
23   SUBMENU:=Filesystem
24   DEPENDS:=@!LINUX_2_4 +libuuid +zlib
25   TITLE:=Btrfs filesystems utilities
26   URL:=http://btrfs.wiki.kernel.org/
27 endef
28
29 define Package/btrfs-progs/description
30  Btrfs is a new copy on write filesystem for Linux aimed at implementing
31  advanced features while focusing on fault tolerance, repair and easy
32  administration. Initially developed by Oracle, Btrfs is licensed under the
33  GPL and open for contribution from anyone. 
34 endef
35
36 progs = btrfsctl mkfs.btrfs btrfs-debug-tree btrfs-show btrfs-vol btrfsck
37
38 define Build/Compile
39         $(MAKE) -C $(PKG_BUILD_DIR) \
40                 CC=$(TARGET_CC) \
41                 CFLAGS="$(TARGET_CPPFLAGS) $(TARGET_CFLAGS)" \
42                 LDFLAGS="$(TARGET_LDFLAGS)" \
43                 prefix=/usr \
44                 DESTDIR=$(PKG_INSTALL_DIR) \
45                 all install
46 endef
47
48 define Package/btrfs-progs/install
49         $(INSTALL_DIR) $(1)/usr/bin
50         $(INSTALL_BIN) $(addprefix $(PKG_INSTALL_DIR)/usr/bin/, $(progs)) $(1)/usr/bin/
51         $(INSTALL_DIR) $(1)/etc/init.d
52         $(INSTALL_BIN) ./files/btrfs-scan.init $(1)/etc/init.d/btrfs-scan
53 endef
54
55 $(eval $(call BuildPackage,btrfs-progs))