mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-03-24 03:22:12 +00:00
The project moved to github, so point the homepage and download URL
there.
[Thomas:
- Remove comment "Switch to github helper on bump" since we clearly
don't want to switch to the github helper if they continue to
upload release tarballs.]
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
18 lines
538 B
Makefile
18 lines
538 B
Makefile
################################################################################
|
|
#
|
|
# sshfs
|
|
#
|
|
################################################################################
|
|
|
|
SSHFS_VERSION = 2.5
|
|
SSHFS_SITE = https://github.com/libfuse/sshfs/releases/download/sshfs_2_5
|
|
SSHFS_SOURCE = sshfs-fuse-$(SSHFS_VERSION).tar.gz
|
|
SSHFS_LICENSE = GPLv2
|
|
SSHFS_LICENSE_FILES = COPYING
|
|
SSHFS_DEPENDENCIES = \
|
|
libglib2 libfuse openssh \
|
|
$(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext) \
|
|
$(if $(BR2_ENABLE_LOCALE),,libiconv)
|
|
|
|
$(eval $(autotools-package))
|