From: nbd Date: Tue, 21 Jul 2009 21:13:05 +0000 (+0000) Subject: add proftpd X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=245f7a399ce5bdc3ba98b6a8ecb6aca24da23f18;p=packages.git add proftpd git-svn-id: svn://svn.openwrt.org/openwrt/packages@16951 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/net/proftpd/Makefile b/net/proftpd/Makefile new file mode 100644 index 000000000..23ceb825b --- /dev/null +++ b/net/proftpd/Makefile @@ -0,0 +1,49 @@ +# +# Copyright (C) 2009 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk +include $(INCLUDE_DIR)/kernel.mk + +PKG_NAME:=proftpd +PKG_VERSION:=1.3.2a +PKG_RELEASE:=1 +PKG_SOURCE_URL:=ftp://ftp.proftpd.org/distrib/source +PKG_MD5SUM:=ad3cbb5db30c5ae39e09b308892392b3 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) +PKG_INSTALL=1 + +include $(INCLUDE_DIR)/package.mk + +define Package/proftpd + SECTION:=net + CATEGORY:=Network + TITLE:=ProFTPD FTP server + URL:=http://www.proftpd.org/ +endef + +TARGET_CPPFLAGS += \ + -I$(LINUX_DIR)/include + +MAKE_FLAGS += \ + INSTALL_USER=$(shell id -u) \ + INSTALL_GROUP=$(shell id -g) + +CONFIGURE_ARGS += \ + --disable-cap + +define Package/proftpd/install + $(CP) $(PKG_INSTALL_DIR)/* $(1)/ + rm -rf \ + $(1)/usr/include \ + $(1)/usr/share \ + $(1)/usr/man \ + $(1)/usr/lib/pkgconfig +endef + +$(eval $(call BuildPackage,proftpd))