Merge pull request #16322 from paper42/mblaze

mblaze: new package
This commit is contained in:
Rosen Penev 2021-08-18 02:04:56 -07:00 committed by GitHub
commit 1062324202
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 37 additions and 0 deletions

37
mail/mblaze/Makefile Normal file
View File

@ -0,0 +1,37 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=mblaze
PKG_VERSION:=1.1
PKG_RELEASE:=$(AUTORELEASE)
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://leahneukirchen.org/releases
PKG_HASH:=edd8cb86f667543e703dee58263b81c7e47744339d23ebbb6a43e75059ba93b1
PKG_BUILD_PARALLEL:=1
PKG_INSTALL:=1
PKG_MAINTAINER:=Michal Vasilek <michal.vasilek@nic.cz>
PKG_LICENSE:=Public Domain, MIT
PKG_LICENSE_FILES:=COPYING
include $(INCLUDE_DIR)/package.mk
define Package/mblaze
SECTION:=mail
CATEGORY:=Mail
TITLE:=Unix utilities to deal with Maildir
URL:=https://github.com/leahneukirchen/mblaze
endef
define Package/mblaze/description
The mblaze message system is a set of Unix utilities for processing
and interacting with mail messages which are stored in maildir folders.
endef
define Package/mblaze/install
$(INSTALL_DIR) $(1)/usr
$(CP) $(PKG_INSTALL_DIR)/usr/local/bin $(1)/usr
endef
$(eval $(call BuildPackage,mblaze))