/
UCS
/
openwrt_packages
Обзор
Документация
Войти
/
UCS
/
openwrt_packages
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
utils/mpack/Makefile
44 строки
1 KB
Rosen Penev
mpack: update URLs
13 авг 2020, 04:36
Не верифицирован
13 авг 2020, 04:36
b7937d3
Код
Авторство
О чём код?
# # Copyright (C) 2007-2014 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:=mpack PKG_VERSION:=1.6 PKG_RELEASE:=1 PKG_LICENSE:=NLPL PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://fossies.org/linux/misc/old PKG_HASH:=274108bb3a39982a4efc14fb3a65298e66c8e71367c3dabf49338162d207a94c PKG_INSTALL:=1 include $(INCLUDE_DIR)/package.mk define Package/mpack SECTION:=utils CATEGORY:=Utilities TITLE:=mpack/munpack MIME format mail messages URL:=https://gitlab.com/osdp/mpack MAINTAINER:=Dmitry V. Zimin <pfzim@mail.ru> endef define Package/mpack/description Mpack and munpack are utilities for encoding and decoding (respectively) binary files in MIME (Multipurpose Internet Mail Extensions) format mail messages. For compatibility with older forms of transferring binary files, the munpack program can also decode messages in split-uuencoded format. endef define Package/mpack/install $(INSTALL_DIR) $(1)/usr/bin $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/ endef $(eval $(call BuildPackage,mpack))