mirror of https://github.com/openwrt/packages.git
63 lines
1.8 KiB
Makefile
63 lines
1.8 KiB
Makefile
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=opentracker
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://erdgeist.org/gitweb/opentracker
|
|
PKG_SOURCE_DATE:=2024-06-22
|
|
PKG_SOURCE_VERSION:=c854b3db9bf620e86481acfcc9fc31eba64bc8e6
|
|
PKG_MIRROR_HASH:=50d0fc8166ae927aa4dad7701f23c9faab80afb0680f7ea460e7b048f8f01a16
|
|
|
|
PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
|
|
PKG_LICENSE:=Beerware
|
|
|
|
PKG_BUILD_DEPENDS:=libowfat
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/opentracker
|
|
SUBMENU:=BitTorrent
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=opentracker
|
|
URL:=http://erdgeist.org/arts/software/opentracker/
|
|
DEPENDS:=+zlib +libpthread
|
|
PROVIDES:=opentracker6
|
|
endef
|
|
|
|
define Package/opentracker/description
|
|
opentracker - An open and free bittorrent tracker
|
|
|
|
opentracker is an open and free bittorrent tracker project.
|
|
It aims for minimal resource usage and is intended to run at your wlan router.
|
|
Currently it is deployed as an open and free tracker instance.
|
|
Read our free and open tracker blog and announce your torrents there
|
|
(but do not hesitate to setup your own free trackers!).
|
|
|
|
opentracker now supports listening on both IPv4 and IPv6 at the same time.
|
|
endef
|
|
|
|
MAKE_FLAGS += PREFIX="$(STAGING_DIR)/usr"
|
|
|
|
TARGET_CFLAGS += -DWANT_NO_AUTO_FREE
|
|
|
|
define Package/opentracker/conffiles
|
|
/etc/opentracker.conf
|
|
endef
|
|
|
|
define Package/opentracker/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/opentracker $(1)/usr/bin
|
|
$(INSTALL_DIR) $(1)/etc
|
|
$(INSTALL_CONF) $(PKG_BUILD_DIR)/opentracker.conf.sample $(1)/etc/opentracker.conf
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/opentracker.init $(1)/etc/init.d/opentracker
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,opentracker))
|