diff options
author | Waldemar Brodkorb <mail@waldemar-brodkorb.de> | 2011-12-03 13:18:48 +0100 |
---|---|---|
committer | Waldemar Brodkorb <mail@waldemar-brodkorb.de> | 2011-12-03 13:18:48 +0100 |
commit | 8679e7fb642f425778b8dbf40a2e23499509f420 (patch) | |
tree | 0ae72271df9f0d66fb473d97fbec989ba441f614 /package/postfix/Makefile | |
parent | e64cf6787f58bdba5f68ad66ac1e77745315947b (diff) |
first shot for postfix
Diffstat (limited to 'package/postfix/Makefile')
-rw-r--r-- | package/postfix/Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/package/postfix/Makefile b/package/postfix/Makefile new file mode 100644 index 000000000..20b37cfbe --- /dev/null +++ b/package/postfix/Makefile @@ -0,0 +1,29 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include $(TOPDIR)/rules.mk + +PKG_NAME:= postfix +PKG_VERSION:= 2.8.7 +PKG_RELEASE:= 1 +PKG_MD5SUM:= b3ff47a38db920fc15bb207f42da53db +PKG_DESCR:= Postfix MTA +PKG_SECTION:= mail +PKG_BUILDDEP:= db +PKG_URL:= http://www.postfix.org/ +PKG_SITES:= http://de.postfix.org/ftpmirror/official/ + +include $(TOPDIR)/mk/package.mk + +$(eval $(call PKG_template,POSTFIX,postfix,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) + +XAKE_FLAGS+= GCC_HONOUR_COPTS=s +CONFIG_STYLE:= manual +ALL_TARGET:= + +postfix-install: + $(INSTALL_DIR) $(IDIR_POSTFIX)/usr/bin + $(INSTALL_BIN) $(WRKINST)/usr/bin/postfix \ + $(IDIR_POSTFIX)/usr/bin + +include ${TOPDIR}/mk/pkg-bottom.mk |