mirror of
https://git.yoctoproject.org/poky
synced 2026-05-01 06:32:11 +02:00
Having one monolithic packages directory makes it hard to find things and is generally overwhelming. This commit splits it into several logical sections roughly based on function, recipes.txt gives more information about the classifications used. The opportunity is also used to switch from "packages" to "recipes" as used in OpenEmbedded as the term "packages" can be confusing to people and has many different meanings. Not all recipes have been classified yet, this is just a first pass at separating things out. Some packages are moved to meta-extras as they're no longer actively used or maintained. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
68 lines
2.9 KiB
BlitzBasic
68 lines
2.9 KiB
BlitzBasic
DESCRIPTION = "ALSA Utilities"
|
|
HOMEPAGE = "http://www.alsa-project.org"
|
|
BUGTRACKER = "https://bugtrack.alsa-project.org/alsa-bug/login_page.php"
|
|
SECTION = "console/utils"
|
|
LICENSE = "GPLv2+"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=393a5ca445f6965873eca0259a17f833 \
|
|
file://alsactl/utils.c;beginline=1;endline=20;md5=fe9526b055e246b5558809a5ae25c0b9"
|
|
DEPENDS = "alsa-lib ncurses gettext"
|
|
PR = "r0"
|
|
|
|
SRC_URI = "ftp://ftp.alsa-project.org/pub/utils/alsa-utils-${PV}.tar.bz2 \
|
|
file://ncursesfix.patch;patch=1 "
|
|
|
|
# lazy hack. needs proper fixing in gettext.m4, see
|
|
# http://bugs.openembedded.org/show_bug.cgi?id=2348
|
|
# please close bug and remove this comment when properly fixed
|
|
#
|
|
EXTRA_OECONF = "--disable-xmlto"
|
|
EXTRA_OECONF_linux-uclibc = "--disable-nls"
|
|
EXTRA_OECONF_linux-uclibcgnueabi = "--disable-nls"
|
|
|
|
inherit autotools
|
|
|
|
# This are all packages that we need to make. Also, the now empty alsa-utils
|
|
# ipk depend on them.
|
|
|
|
PACKAGES += "\
|
|
alsa-utils-alsamixer \
|
|
alsa-utils-midi \
|
|
alsa-utils-aplay \
|
|
alsa-utils-amixer \
|
|
alsa-utils-aconnect \
|
|
alsa-utils-iecset \
|
|
alsa-utils-speakertest \
|
|
alsa-utils-aseqnet \
|
|
alsa-utils-aseqdump \
|
|
alsa-utils-alsaconf \
|
|
alsa-utils-alsactl "
|
|
|
|
# We omit alsaconf, because
|
|
# a) this is a bash script
|
|
# b) it creates config files not suitable for OE-based distros
|
|
|
|
FILES_${PN} = ""
|
|
FILES_alsa-utils-aplay = "${bindir}/aplay ${bindir}/arecord"
|
|
FILES_alsa-utils-amixer = "${bindir}/amixer"
|
|
FILES_alsa-utils-alsamixer = "${bindir}/alsamixer"
|
|
FILES_alsa-utils-speakertest = "${bindir}/speaker-test ${datadir}/sounds/alsa/ ${datadir}/alsa/"
|
|
FILES_alsa-utils-midi = "${bindir}/aplaymidi ${bindir}/arecordmidi ${bindir}/amidi"
|
|
FILES_alsa-utils-aconnect = "${bindir}/aconnect"
|
|
FILES_alsa-utils-aseqnet = "${bindir}/aseqnet"
|
|
FILES_alsa-utils-iecset = "${bindir}/iecset"
|
|
FILES_alsa-utils-alsactl = "${sbindir}/alsactl"
|
|
FILES_alsa-utils-aseqdump = "${bindir}/aseqdump"
|
|
FILES_alsa-utils-alsaconf = "${sbindir}/alsaconf"
|
|
|
|
DESCRIPTION_alsa-utils-aplay = "play (and record) sound files via ALSA"
|
|
DESCRIPTION_alsa-utils-amixer = "command-line based control for ALSA mixer and settings"
|
|
DESCRIPTION_alsa-utils-alsamixer = "ncurses based control for ALSA mixer and settings"
|
|
DESCRIPTION_alsa-utils-speakertest = "ALSA surround speaker test utility"
|
|
DESCRIPTION_alsa-utils-midi = "miscalleanous MIDI utilities for ALSA"
|
|
DESCRIPTION_alsa-utils-aconnect = "ALSA sequencer connection manager"
|
|
DESCRIPTION_alsa-utils-aseqnet = "network client/server on ALSA sequencer"
|
|
DESCRIPTION_alsa-utils-alsactl = "saves/restores ALSA-settings in /etc/asound.state"
|
|
DESCRIPTION_alsa-utils-alsaconf = "a bash script that creates ALSA configuration files"
|
|
|
|
ALLOW_EMPTY_alsa-utils = "1"
|