packages/net/nbd/Makefile
nico 7a180cf804 [packages] nbd: update to 2.9.15
git-svn-id: svn://svn.openwrt.org/openwrt/packages@21000 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-04-18 19:24:54 +00:00

48 lines
940 B
Makefile

#
# Copyright (C) 2006-2010 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=nbd
PKG_VERSION:=2.9.15
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=@SF/nbd
PKG_MD5SUM:=86545fee9fde3907d3e8cde428238825
include $(INCLUDE_DIR)/package.mk
PKG_BUILD_DEPENDS:=glib2 libintl
define Package/nbd
SECTION:=net
CATEGORY:=Network
TITLE:=Network Block Device utilities
URL:=http://nbd.sourceforge.net
DEPENDS:=@LINUX_2_6
endef
define Package/nbd/description
This package contains the network block device client.
endef
CONFIGURE_ARGS+= \
--disable-glibtest
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR) \
nbd-client
endef
define Package/nbd/install
$(INSTALL_DIR) $(1)/usr/sbin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/nbd-client $(1)/usr/sbin/
endef
$(eval $(call BuildPackage,nbd))