Add mktorrent package
authorDaniel Golle <daniel@makrotopia.org>
Fri, 13 Jun 2014 14:43:11 +0000 (16:43 +0200)
committerDaniel Golle <daniel@makrotopia.org>
Fri, 13 Jun 2014 14:45:23 +0000 (16:45 +0200)
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
utils/mktorrent/Makefile [new file with mode: 0644]

diff --git a/utils/mktorrent/Makefile b/utils/mktorrent/Makefile
new file mode 100644 (file)
index 0000000..3ff9813
--- /dev/null
@@ -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))