7b0e757fb8
The recommended form is without the trailing slash, and will become mandatory in a coming commit. This avoids the need for the $$($(2)_SITE:/=) magic in package/pkg-generic.mk to avoid double slashes in download URLs, like "https://mosh.mit.edu//mosh-1.2.5.tar.gz". ^^ Note: this work has already been done inb0b9606530
a few months ago and earlier inc7f4b96471
and4a9eb20de8
, but no check has been added at that time to avoid new slashes to slip in, and so they did. This time a patch will follow immediately to prevent future mistakes from being unnoticed. Mass-replaced with the following command: git grep -l '_SITE.*/$' | xargs sed -i '/_SITE.*=/s|/$||' Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
18 lines
694 B
Makefile
18 lines
694 B
Makefile
################################################################################
|
|
#
|
|
# gtksharp3
|
|
#
|
|
################################################################################
|
|
|
|
MONO_GTKSHARP3_VERSION_MAJOR = 2.99
|
|
MONO_GTKSHARP3_VERSION = $(MONO_GTKSHARP3_VERSION_MAJOR).3
|
|
MONO_GTKSHARP3_SITE = http://ftp.gnome.org/pub/gnome/sources/gtk-sharp/$(MONO_GTKSHARP3_VERSION_MAJOR)
|
|
MONO_GTKSHARP3_SOURCE = gtk-sharp-$(MONO_GTKSHARP3_VERSION).tar.xz
|
|
MONO_GTKSHARP3_LICENSE = LGPLv2, MIT (cairo)
|
|
MONO_GTKSHARP3_LICENSE_FILES = COPYING
|
|
MONO_GTKSHARP3_INSTALL_STAGING = YES
|
|
MONO_GTKSHARP3_DEPENDENCIES = mono libgtk3
|
|
MONO_GTKSHARP3_CONF_OPTS += CSC=$(HOST_DIR)/usr/bin/mcs
|
|
|
|
$(eval $(autotools-package))
|