Add mktorrent package

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
This commit is contained in:
Daniel Golle 2014-06-13 16:43:11 +02:00
parent 6c6bbe89d1
commit bea53b612f
1 changed files with 39 additions and 0 deletions

39
utils/mktorrent/Makefile Normal file
View File

@ -0,0 +1,39 @@
#
# Copyright (C) 2006-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:=mktorrent
PKG_VERSION:=1.0
PKG_RELEASE:=1
PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://downloads.sourceforge.net/$(PKG_NAME)/
PKG_MD5SUM:=0da00209da96a0dc39efbb6eb5b4d8ff
include $(INCLUDE_DIR)/package.mk
define Package/mktorrent
SUBMENU:=BitTorrent
SECTION:=net
CATEGORY:=Network
TITLE:=mktorrent
URL:=http://mktorrent.sourceforge.net/
endef
define Package/mktorrent/Description
mktorrent is a simple command line utility to create BitTorrent metainfo files.
endef
define Package/mktorrent/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/mktorrent $(1)/usr/bin
endef
$(eval $(call BuildPackage,mktorrent))