300f9c9c9d
Thanks to the pkgparentdir and pkgname functions, we can rewrite the AUTOTARGETS macro in a way that avoids the need for each package to repeat its name and the directory in which it is present. [Peter: pkgdir->pkgparentdir] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
18 lines
453 B
Makefile
18 lines
453 B
Makefile
#############################################################
|
|
#
|
|
# enhanced ctorrent
|
|
#
|
|
#############################################################
|
|
CTORRENT_VERSION:=dnh3.3.2
|
|
CTORRENT_SOURCE:=ctorrent-$(CTORRENT_VERSION).tar.gz
|
|
CTORRENT_SITE:=http://www.rahul.net/dholmes/ctorrent/
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
CTORRENT_CONF_OPT+=--with-ssl=yes
|
|
CTORRENT_DEPENDENCIES+=openssl
|
|
else
|
|
CTORRENT_CONF_OPT+=--with-ssl=no
|
|
endif
|
|
|
|
$(eval $(call AUTOTARGETS))
|