Skip to content
Snippets Groups Projects
Unverified Commit c597f12b authored by Rosen Penev's avatar Rosen Penev Committed by GitHub
Browse files

Merge pull request #15483 from oskarirauta/feature_mtools

mtools: add new package
parents b7d5b105 8ec61eb7
No related branches found
No related tags found
1 merge request!13Uplift of packages using two step method. Use commits specified by feeds.conf.default from main repo.
include $(TOPDIR)/rules.mk
PKG_NAME:=mtools
PKG_VERSION:=4.0.26
PKG_RELEASE:=$(AUTORELEASE)
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=@GNU/mtools
PKG_HASH:=539f1c8b476a16e198d8bcb10a5799e22e69de49d854f7dbd85b64c2a45dea1a
PKG_BUILD_PARALLEL:=1
PKG_INSTALL:=1
PKG_MAINTAINER:=Oskari Rauta <oskari.rauta@gmail.com>
PKG_LICENSE:=GPL-3.0-only
PKG_LICENSE_FILES:=COPYING
include $(INCLUDE_DIR)/package.mk
define Package/mtools
SECTION:=utils
CATEGORY:=Utilities
SUBMENU:=Disc
TITLE:=Collection of utilities to access MS-DOS disks
URL:=https://www.gnu.org/software/mtools
DEPENDS:=+libbsd
endef
define Package/mtools/description
Mtools is a collection of utilities to access MS-DOS disks from GNU and Unix without mounting them.
endef
define Package/mtools/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/amuFormat.sh $(1)/usr/bin/
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/mcheck $(1)/usr/bin/
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/mcomp $(1)/usr/bin/
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/mkmanifest $(1)/usr/bin/
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/mtools $(1)/usr/bin/
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/mxtar $(1)/usr/bin/
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/tgz $(1)/usr/bin/
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/uz $(1)/usr/bin/
$(LN) uz $(1)/usr/bin/lz
$(LN) mtools $(1)/usr/bin/mattrib
$(LN) mtools $(1)/usr/bin/mbadblock
$(LN) mtools $(1)/usr/bin/mcat
$(LN) mtools $(1)/usr/bin/mcd
$(LN) mtools $(1)/usr/bin/mclasserase
$(LN) mtools $(1)/usr/bin/mcopy
$(LN) mtools $(1)/usr/bin/mdel
$(LN) mtools $(1)/usr/bin/mdeltree
$(LN) mtools $(1)/usr/bin/mdir
$(LN) mtools $(1)/usr/bin/mdu
$(LN) mtools $(1)/usr/bin/mformat
$(LN) mtools $(1)/usr/bin/minfo
$(LN) mtools $(1)/usr/bin/mlabel
$(LN) mtools $(1)/usr/bin/mmd
$(LN) mtools $(1)/usr/bin/mmount
$(LN) mtools $(1)/usr/bin/mmove
$(LN) mtools $(1)/usr/bin/mpartition
$(LN) mtools $(1)/usr/bin/mrd
$(LN) mtools $(1)/usr/bin/mren
$(LN) mtools $(1)/usr/bin/mshortname
$(LN) mtools $(1)/usr/bin/mshowfat
$(LN) mtools $(1)/usr/bin/mtoolstest
$(LN) mtools $(1)/usr/bin/mtype
$(LN) mtools $(1)/usr/bin/mzip
endef
$(eval $(call BuildPackage,mtools))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment