Move all to deprecated folder.
This commit is contained in:
21
deprecated/firmware/buildroot/package/flickcurl/Config.in
Normal file
21
deprecated/firmware/buildroot/package/flickcurl/Config.in
Normal file
@@ -0,0 +1,21 @@
|
||||
config BR2_PACKAGE_FLICKCURL
|
||||
bool "flickcurl"
|
||||
select BR2_PACKAGE_LIBCURL
|
||||
select BR2_PACKAGE_LIBXML2
|
||||
# Ensure that libcurl is built with crypto support, since
|
||||
# flickcurl must access https:// URLs.
|
||||
select BR2_PACKAGE_OPENSSL if !(BR2_PACKAGE_GNUTLS || BR2_PACKAGE_LIBNSS)
|
||||
select BR2_PACKAGE_CA_CERTIFICATES # runtime
|
||||
help
|
||||
Flickcurl is a C library for the Flickr API, handling
|
||||
creating the requests, signing, token management, calling
|
||||
the API, marshalling request parameters and decoding
|
||||
responses.
|
||||
|
||||
http://librdf.org/flickcurl/
|
||||
|
||||
config BR2_PACKAGE_FLICKCURL_UTILS
|
||||
bool "flickcurl utilities"
|
||||
depends on BR2_PACKAGE_FLICKCURL
|
||||
help
|
||||
Install flickcurl utilites (flickcurl + flickrdf) to target.
|
||||
@@ -0,0 +1,2 @@
|
||||
# Locally calculated after checking pgp signature
|
||||
sha256 ff42a36c7c1c7d368246f6bc9b7d792ed298348e5f0f5d432e49f6803562f5a3 flickcurl-1.26.tar.gz
|
||||
23
deprecated/firmware/buildroot/package/flickcurl/flickcurl.mk
Normal file
23
deprecated/firmware/buildroot/package/flickcurl/flickcurl.mk
Normal file
@@ -0,0 +1,23 @@
|
||||
################################################################################
|
||||
#
|
||||
# flickcurl
|
||||
#
|
||||
################################################################################
|
||||
|
||||
FLICKCURL_VERSION = 1.26
|
||||
FLICKCURL_SITE = http://download.dajobe.org/flickcurl
|
||||
FLICKCURL_LICENSE = LGPLv2.1+ or GPLv2+ or Apache 2.0+
|
||||
FLICKCURL_LICENSE_FILES = COPYING COPYING.LIB LICENSE-2.0.txt LICENSE.html
|
||||
FLICKCURL_INSTALL_STAGING = YES
|
||||
FLICKCURL_CONFIG_SCRIPTS = flickcurl-config
|
||||
FLICKCURL_CONF_OPTS = --without-curl-config --without-xml2-config --without-raptor
|
||||
FLICKCURL_DEPENDENCIES = libcurl libxml2 host-pkgconf
|
||||
|
||||
ifeq ($(BR2_PACKAGE_FLICKCURL_UTILS),)
|
||||
define FLICKCURL_REMOVE_UTILS
|
||||
rm -f $(TARGET_DIR)/usr/bin/flickcurl $(TARGET_DIR)/usr/bin/flickrdf
|
||||
endef
|
||||
FLICKCURL_POST_INSTALL_TARGET_HOOKS += FLICKCURL_REMOVE_UTILS
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user