-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[PACKAGE/DEFCONFIG] add LIBMIKMOD + FLUIDLITE to static SDKs (#71)
* [PACKAGE] add LIBMIKMOD + FLUIDLITE * [DEFCONFIG] update static SDKs with FLUIDLITE and LIBMIKMOD
- Loading branch information
Showing
9 changed files
with
64 additions
and
0 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
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
config BR2_PACKAGE_FLUIDLITE | ||
bool "fluidlite" | ||
depends on BR2_USE_MMU | ||
help | ||
FluidLite is a very light version of FluidSynth. |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Locally computed | ||
sha256 ef4d008f9fe2fa9a48135505d42dd7e8e9cc4d7494a4b13d6caa13adb5c61ff8 fluidlite-1.0.tar.gz | ||
sha256 a5564e99fd7f49e1344152a8c5bc1d420d5f973b30e010946764db0b5b9e668c LICENSE |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
################################################################################ | ||
# | ||
# FLUIDLITE | ||
# | ||
################################################################################ | ||
|
||
FLUIDLITE_VERSION = 1.0 | ||
FLUIDLITE_SITE = $(call github,gcw0,FluidLite,$(FLUIDLITE_VERSION)) | ||
FLUIDLITE_LICENSE = LGPL-2.1+ | ||
FLUIDLITE_LICENSE_FILES = LICENSE | ||
FLUIDLITE_INSTALL_STAGING = YES | ||
FLUIDLITE_DEPENDENCIES = | ||
|
||
# Disable the shared library for static only build | ||
ifeq ($(BR2_STATIC_LIBS),y) | ||
FLUIDLITE_CONF_OPTS += -DFLUIDLITE_BUILD_SHARED=FALSE | ||
endif | ||
|
||
$(eval $(cmake-package)) |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
config BR2_PACKAGE_LIBMIKMOD | ||
bool "libmikmod" | ||
help | ||
Mikmod is a module player and library supporting many | ||
tracker formats, including mod, s3m, it, and xm. | ||
|
||
http://mikmod.shlomifish.org/ |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Locally computed | ||
sha256 ad9d64dfc8f83684876419ea7cd4ff4a41d8bcd8c23ef37ecb3a200a16b46d19 libmikmod-3.3.11.1.tar.gz |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
################################################################################ | ||
# | ||
# libmikmod | ||
# | ||
################################################################################ | ||
|
||
LIBMIKMOD_VERSION:=3.3.11.1 | ||
LIBMIKMOD_SITE:=http://sourceforge.net/projects/mikmod/files/libmikmod/$(LIBMIKMOD_VERSION) | ||
|
||
LIBMIKMOD_CONF_OPTS = --localstatedir=/var | ||
|
||
LIBMIKMOD_LIBTOOL_PATCH = NO | ||
LIBMIKMOD_INSTALL_STAGING = YES | ||
|
||
LIBMIKMOD_CONFIG_SCRIPTS = libmikmod-config | ||
|
||
define LIBMIKMOD_REMOVE_LIBMIKMOD_CONFIG | ||
rm -f $(TARGET_DIR)/usr/bin/libmikmod-config | ||
endef | ||
LIBMIKMOD_POST_INSTALL_TARGET_HOOKS += LIBMIKMOD_REMOVE_LIBMIKMOD_CONFIG | ||
|
||
$(eval $(autotools-package)) |