8ef0bfdb0e4456549e6923f5fa6b46ed4ac41cde
[openwrt/svn-archive/archive.git] / net / nbd / Makefile
1 #
2 # Copyright (C) 2006-2010 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:=nbd
11 PKG_VERSION:=2.9.15
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@SF/nbd
16 PKG_MD5SUM:=86545fee9fde3907d3e8cde428238825
17
18 include $(INCLUDE_DIR)/package.mk
19
20 PKG_BUILD_DEPENDS:=glib2 libintl
21
22 define Package/nbd
23 SECTION:=net
24 CATEGORY:=Network
25 TITLE:=Network Block Device utilities
26 URL:=http://nbd.sourceforge.net
27 DEPENDS:=@LINUX_2_6
28 endef
29
30 define Package/nbd/description
31 This package contains the network block device client.
32 endef
33
34 CONFIGURE_ARGS+= \
35 --disable-glibtest
36
37 define Build/Compile
38 $(MAKE) -C $(PKG_BUILD_DIR) \
39 nbd-client
40 endef
41
42 define Package/nbd/install
43 $(INSTALL_DIR) $(1)/usr/sbin
44 $(INSTALL_BIN) $(PKG_BUILD_DIR)/nbd-client $(1)/usr/sbin/
45 endef
46
47 $(eval $(call BuildPackage,nbd))