mirror of
https://github.com/openwrt/packages.git
synced 2025-02-07 06:59:51 +00:00
Add SUBMENU variable for some packages in Network category. Add title for `dnscrypt-proxy` package. Shorten TITLE variable for `xray-core` package. Filesystem: - cifs-utils File Transfer: - onionshare-cli IP Addresses and Names: - dnscrypt-proxy2 - family-dns - https-dns-proxy - mdns-repeater - nextdns - smartdns Version Control Systems: - git-lfs Wireless: - dawn Signed-off-by: Ryan Keane <the.ra2.ifv@gmail.com>
48 lines
1.3 KiB
Makefile
48 lines
1.3 KiB
Makefile
#
|
|
# Copyright (C) 2020-2021 CZ.NIC, z. s. p. o. (https://www.nic.cz/)
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=git-lfs
|
|
PKG_VERSION:=3.5.1
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-v$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://github.com/git-lfs/git-lfs/releases/download/v$(PKG_VERSION)
|
|
PKG_HASH:=fc19c7316e80a6ef674aa4e1863561c1263cd4ce0588b9989e4be9461664d752
|
|
|
|
PKG_MAINTAINER:=Jan Pavlinec <jan.pavlinec1@gmail.com>
|
|
PKG_LICENSE:=MIT
|
|
PKG_LICENSE_FILES:=LICENSE.md
|
|
|
|
PKG_BUILD_DEPENDS:=golang/host
|
|
PKG_BUILD_PARALLEL:=1
|
|
PKG_BUILD_FLAGS:=no-mips16
|
|
|
|
GO_PKG:=github.com/git-lfs/git-lfs
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include ../../lang/golang/golang-package.mk
|
|
|
|
define Package/git-lfs
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=Git Large File Storage
|
|
SUBMENU:=Version Control Systems
|
|
URL:=https://git-lfs.com
|
|
DEPENDS:=$(GO_ARCH_DEPENDS) +git
|
|
endef
|
|
|
|
define Package/git-lfs/description
|
|
Git Large File Storage (LFS) replaces large files such as audio samples,
|
|
videos, datasets, and graphics with text pointers inside Git, while storing
|
|
the file contents on a remote server like GitHub.com or GitHub Enterprise.
|
|
endef
|
|
|
|
$(eval $(call GoBinPackage,git-lfs))
|
|
$(eval $(call BuildPackage,git-lfs))
|