nuke $Id$ in /packages as well
[packages.git] / net / unfs3 / Makefile
1
2 # Copyright (C) 2006 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:=unfs3
11 PKG_VERSION:=0.9.20
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@SF/$(PKG_NAME)
16 PKG_MD5SUM:=2920d9cc7c3cb76da0792669bf035650
17
18 include $(INCLUDE_DIR)/package.mk
19
20 define Package/unfs3
21   SECTION:=net
22   CATEGORY:=Network
23   DEPENDS:=+portmap
24   TITLE:=User-space NFSv3 Server
25   URL:=http://unfs3.sourceforge.net/
26 endef
27
28 define Package/unfs3/description
29         UNFS3 is a user-space implementation of the NFSv3 server
30         specification. It provides a daemon for the MOUNT and NFS
31         protocols, which are used by NFS clients for accessing files
32         on the server.
33 endef
34
35 define Package/unfs3/install
36         $(INSTALL_DIR) $(1)/etc/init.d
37         $(INSTALL_BIN) ./files/$(PKG_NAME).init $(1)/etc/init.d/$(PKG_NAME)
38         $(INSTALL_DIR) $(1)/etc
39         $(INSTALL_DATA) ./files/$(PKG_NAME).exports $(1)/etc/exports
40         $(INSTALL_DIR) $(1)/usr/sbin
41         $(INSTALL_BIN) $(PKG_BUILD_DIR)/unfsd $(1)/usr/sbin
42 endef
43
44 $(eval $(call BuildPackage,unfs3))