-
-
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.
* fix cross/dtach for gateone * fix cross/pyzmq for python * update monit from 5.27.0 to 5.27.1 to fix config for cross compilation - fix version in spk/monit/Makefile - monit: keep beta as this needs further testing before publishing * cleanup makefiles - use secure pages (https) for download and homepage reference (where applicable) - move source file to src folder (cross/c_icap) - cleanup native makefiles - use pip of python3 in native/python3 - remove obsolete package cross/julius - cleanup global Makefile
- Loading branch information
Showing
288 changed files
with
810 additions
and
896 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,26 @@ | ||
PKG_NAME = alsa-lib | ||
PKG_VERS = 1.1.2 | ||
PKG_EXT = tar.bz2 | ||
PKG_DIR = $(PKG_NAME)-$(PKG_VERS) | ||
PKG_DIST_NAME = $(PKG_DIR).$(PKG_EXT) | ||
PKG_DIST_NAME = $(PKG_NAME)-$(PKG_VERS).$(PKG_EXT) | ||
PKG_DIST_SITE = ftp://ftp.alsa-project.org/pub/lib | ||
PKG_DIR = $(PKG_NAME)-$(PKG_VERS) | ||
|
||
DEPENDS = | ||
|
||
HOMEPAGE = http://www.alsa-project.org/ | ||
HOMEPAGE = https://www.alsa-project.org/ | ||
COMMENT = Advanced Linux Sound Architecture provides audio and MIDI functionality to the Linux operating system | ||
LICENSE = | ||
LICENSE = LGPLv2.1 | ||
|
||
GNU_CONFIGURE = 1 | ||
CONFIGURE_ARGS = --disable-python | ||
ifeq ($(findstring $(ARCH), ppc853x ppc854x),$(ARCH)) | ||
ADDITIONAL_CFLAGS = -DNO_TLS_PFX | ||
endif | ||
|
||
INSTALL_TARGET = myInstall | ||
INSTALL_TARGET = alsa-lib_install | ||
|
||
include ../../mk/spksrc.cross-cc.mk | ||
|
||
|
||
.PHONY: myInstall | ||
myInstall: | ||
.PHONY: alsa-lib_install | ||
alsa-lib_install: | ||
$(RUN) make install DESTDIR=$(INSTALL_DIR) | ||
|
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,22 +1,21 @@ | ||
PKG_NAME = alsa-oss | ||
PKG_VERS = 1.0.28 | ||
PKG_EXT = tar.bz2 | ||
PKG_DIR = $(PKG_NAME)-$(PKG_VERS) | ||
PKG_DIST_NAME = $(PKG_DIR).$(PKG_EXT) | ||
PKG_DIST_NAME = $(PKG_NAME)-$(PKG_VERS).$(PKG_EXT) | ||
PKG_DIST_SITE = ftp://ftp.alsa-project.org/pub/oss-lib | ||
PKG_DIR = $(PKG_NAME)-$(PKG_VERS) | ||
|
||
DEPENDS = cross/alsa-lib | ||
|
||
HOMEPAGE = http://www.alsa-project.org/ | ||
HOMEPAGE = https://www.alsa-project.org/ | ||
COMMENT = Advanced Linux Sound Architecture provides audio and MIDI functionality to the Linux operating system | ||
LICENSE = | ||
|
||
GNU_CONFIGURE = 1 | ||
INSTALL_TARGET = myInstall | ||
INSTALL_TARGET = alsa-oss_install | ||
|
||
include ../../mk/spksrc.cross-cc.mk | ||
|
||
.PHONY: myInstall | ||
myInstall: | ||
.PHONY: alsa-oss_install | ||
alsa-oss_install: | ||
$(RUN) make install DESTDIR=$(INSTALL_DIR) | ||
|
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,31 +1,31 @@ | ||
PKG_NAME = alsa-utils | ||
PKG_VERS = 1.0.26 | ||
PKG_EXT = tar.bz2 | ||
PKG_DIR = $(PKG_NAME)-$(PKG_VERS) | ||
PKG_DIST_NAME = $(PKG_DIR).$(PKG_EXT) | ||
PKG_DIST_NAME = $(PKG_NAME)-$(PKG_VERS).$(PKG_EXT) | ||
PKG_DIST_SITE = ftp://ftp.alsa-project.org/pub/utils | ||
PKG_DIR = $(PKG_NAME)-$(PKG_VERS) | ||
|
||
DEPENDS = cross/alsa-lib cross/ncurses | ||
|
||
HOMEPAGE = http://www.alsa-project.org/ | ||
HOMEPAGE = https://www.alsa-project.org/ | ||
COMMENT = Advanced Linux Sound Architecture provides audio and MIDI functionality to the Linux operating system | ||
LICENSE = | ||
LICENSE = GPLv2 | ||
|
||
GNU_CONFIGURE = 1 | ||
CONFIGURE_ARGS = --with-curses=ncurses | ||
CONFIGURE_TARGET = myConfigure | ||
INSTALL_TARGET = myInstall | ||
CONFIGURE_TARGET = alsa-utils_configure | ||
INSTALL_TARGET = alsa-utils_install | ||
|
||
include ../../mk/spksrc.cross-cc.mk | ||
|
||
.PHONY: myConfigure | ||
myConfigure: | ||
.PHONY: alsa-utils_configure | ||
alsa-utils_configure: | ||
sed -i.orig $(INSTALL_DIR)/$(INSTALL_PREFIX)/bin/ncurses5-config \ | ||
-e 's#^prefix=".*"$$#prefix="$(INSTALL_DIR)/$(INSTALL_PREFIX)"#' | ||
$(RUN) PATH=$(INSTALL_DIR)/$(INSTALL_PREFIX)/bin/:$(PATH) ./configure $(REAL_CONFIGURE_ARGS) | ||
mv $(INSTALL_DIR)/$(INSTALL_PREFIX)/bin/ncurses5-config.orig $(INSTALL_DIR)/$(INSTALL_PREFIX)/bin/ncurses5-config | ||
|
||
.PHONY: myInstall | ||
myInstall: | ||
.PHONY: alsa-utils_install | ||
alsa-utils_install: | ||
$(RUN) make install DESTDIR=$(INSTALL_DIR) | ||
|
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
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
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
Oops, something went wrong.