a5eefab2d4
- Switch site to get latest release
- libsndfile and readline are not a dependency since removal of
example-clients and tools with
ca3af4b0d8
- Update indentation in hash file (two spaces)
https://jackaudio.org/news/2022/01/15/jack1-v01260-and-jack2-v1920-releases.html
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
23 lines
651 B
Makefile
23 lines
651 B
Makefile
################################################################################
|
|
#
|
|
# jack1
|
|
#
|
|
################################################################################
|
|
|
|
JACK1_VERSION = 0.126.0
|
|
JACK1_SITE = \
|
|
https://github.com/jackaudio/jack1/releases/download/$(JACK1_VERSION)
|
|
JACK1_LICENSE = GPL-2.0+ (jack server), LGPL-2.1+ (jack library)
|
|
JACK1_LICENSE_FILES = COPYING COPYING.GPL COPYING.LGPL
|
|
JACK1_INSTALL_STAGING = YES
|
|
|
|
JACK1_DEPENDENCIES = host-pkgconf alsa-lib berkeleydb
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBSAMPLERATE),y)
|
|
JACK1_DEPENDENCIES += libsamplerate
|
|
endif
|
|
|
|
JACK1_CONF_OPTS = --without-html-dir --disable-oss
|
|
|
|
$(eval $(autotools-package))
|