-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow building against ffmpeg package libraries
- Loading branch information
Showing
5 changed files
with
36 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
chromaprint-1.3.2.tar.gz SHA1 29e86490f14c5d50f8720974b814340f9846f71f | ||
chromaprint-1.3.2.tar.gz SHA256 c3af900d8e7a42afd74315b51b79ebd2e43bc66630b4ba585a54bf3160439652 | ||
chromaprint-1.3.2.tar.gz MD5 cba6ed3209516518d2ecfda887dabdaf | ||
chromaprint-1.4.3.tar.gz SHA1 c3f880f6ed752c0d0802c55d28a1a6df78b4d7d4 | ||
chromaprint-1.4.3.tar.gz SHA256 ea18608b76fb88e0203b7d3e1833fb125ce9bb61efe22c6e169a50c52c457f82 | ||
chromaprint-1.4.3.tar.gz MD5 20014ca19974de9657d91d331d11f936 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,31 @@ | ||
SPK_NAME = chromaprint | ||
SPK_VERS = 1.3.2 | ||
SPK_REV = 4 | ||
SPK_VERS = 1.4.3 | ||
SPK_REV = 6 | ||
SPK_ICON = src/chromaprint.png | ||
|
||
DEPENDS = cross/lame cross/$(SPK_NAME) | ||
DEPENDS = cross/$(SPK_NAME) | ||
|
||
STARTABLE = no | ||
|
||
MAINTAINER = cytec | ||
DESCRIPTION = "Chromaprint is the core component of the AcoustID project. It's a client-side library that implements a custom algorithm for extracting fingerprints from any audio source. " | ||
DISPLAY_NAME = Chromaprint | ||
CHANGELOG = "Update to 1.3.2" | ||
CHANGELOG = "Update to 1.4.3" | ||
|
||
HOMEPAGE = http://acoustid.org/chromaprint | ||
LICENSE = LGPL2.1+ | ||
|
||
INSTALLER_SCRIPT = src/installer.sh | ||
SSS_SCRIPT = src/dsm-control.sh | ||
include ../../mk/spksrc.common.mk | ||
|
||
INSTALL_PREFIX = /usr/local/$(SPK_NAME) | ||
# Reuse ffmpeg libraries | ||
# Requires to invoke: make [package|publish] ARCH= TCVERSION= | ||
export FFMPEG_DIR = $(shell pwd)/../ffmpeg/work-$(ARCH)-$(TCVERSION)/install/var/packages/ffmpeg/target | ||
|
||
ifneq ($(wildcard $(FFMPEG_DIR)),) | ||
$(info Depend on ffmpeg package libraries) | ||
SPK_DEPENDS = "ffmpeg>3.4" | ||
else | ||
$(warning Build spk/ffmpeg first to depend on its libraries $(FFMPEG_DIR)) | ||
endif | ||
|
||
include ../../mk/spksrc.spk.mk |