parent
b5f6297551
commit
9e0c06f612
|
@ -1 +0,0 @@
|
|||
mpg123
|
|
@ -0,0 +1,28 @@
|
|||
# Template file for 'mpg123-sdl'
|
||||
# Sync with mpg123
|
||||
pkgname=mpg123-sdl
|
||||
version=1.31.1
|
||||
revision=2
|
||||
build_style=gnu-configure
|
||||
# --with-cpu not necessary, upstream detects features correctly
|
||||
configure_args="--with-optimization=0 --with-default-audio=alsa"
|
||||
hostmakedepends="pkg-config"
|
||||
makedepends="alsa-lib-devel SDL2-devel"
|
||||
depends="libmpg123>=${version}<=${version}_9999"
|
||||
short_desc="Fast console MPEG audio decoder/player - SDL output plugin"
|
||||
maintainer="Orphaned <orphan@voidlinux.org>"
|
||||
license="LGPL-2.1-only"
|
||||
homepage="https://www.mpg123.org/"
|
||||
changelog="https://www.mpg123.org/cgi-bin/scm/mpg123/trunk/NEWS"
|
||||
distfiles="${SOURCEFORGE_SITE}/mpg123/mpg123-${version}.tar.bz2
|
||||
https://www.mpg123.org/download/mpg123-${version}.tar.bz2"
|
||||
checksum="5dcb0936efd44cb583498b6585845206f002a7b19d5066a2683be361954d955a
|
||||
5dcb0936efd44cb583498b6585845206f002a7b19d5066a2683be361954d955a"
|
||||
|
||||
if [ "$XBPS_TARGET_LIBC" = musl ]; then
|
||||
configure_args+=" --disable-lfs-alias"
|
||||
fi
|
||||
|
||||
post_install() {
|
||||
find ${DESTDIR} -name output_sdl.so -o '(' -not -type d -delete ')'
|
||||
}
|
|
@ -1,24 +1,27 @@
|
|||
# Template file for 'mpg123'
|
||||
# Sync with mpg123-sdl
|
||||
pkgname=mpg123
|
||||
version=1.31.1
|
||||
revision=1
|
||||
revision=2
|
||||
build_style=gnu-configure
|
||||
# --with-cpu not necessary, upstream detects features correctly
|
||||
configure_args="--with-optimization=0 --with-default-audio=alsa"
|
||||
hostmakedepends="pkg-config"
|
||||
makedepends="alsa-lib-devel jack-devel pulseaudio-devel sndio-devel SDL2-devel"
|
||||
makedepends="alsa-lib-devel jack-devel pulseaudio-devel sndio-devel"
|
||||
short_desc="Fast console MPEG audio decoder/player"
|
||||
maintainer="Orphaned <orphan@voidlinux.org>"
|
||||
license="LGPL-2.1-only"
|
||||
homepage="https://www.mpg123.org/"
|
||||
changelog="https://www.mpg123.org/cgi-bin/scm/mpg123/trunk/NEWS"
|
||||
distfiles="${SOURCEFORGE_SITE}/mpg123/mpg123-${version}.tar.bz2"
|
||||
checksum=5dcb0936efd44cb583498b6585845206f002a7b19d5066a2683be361954d955a
|
||||
distfiles="${SOURCEFORGE_SITE}/mpg123/mpg123-${version}.tar.bz2
|
||||
https://www.mpg123.org/download/mpg123-${version}.tar.bz2"
|
||||
checksum="5dcb0936efd44cb583498b6585845206f002a7b19d5066a2683be361954d955a
|
||||
5dcb0936efd44cb583498b6585845206f002a7b19d5066a2683be361954d955a"
|
||||
|
||||
case "$XBPS_TARGET_MACHINE" in
|
||||
if [ "$XBPS_TARGET_LIBC" = musl ]; then
|
||||
# No LFS required with musl
|
||||
*-musl) configure_args+=" --disable-lfs-alias";;
|
||||
esac
|
||||
configure_args+=" --disable-lfs-alias"
|
||||
fi
|
||||
|
||||
mpg123-jack_package() {
|
||||
depends="libmpg123-${version}_${revision}"
|
||||
|
@ -34,13 +37,7 @@ mpg123-pulseaudio_package() {
|
|||
vmove usr/lib/mpg123/output_pulse.so
|
||||
}
|
||||
}
|
||||
mpg123-sdl_package() {
|
||||
depends="libmpg123-${version}_${revision}"
|
||||
short_desc+=" - SDL output plugin"
|
||||
pkg_install() {
|
||||
vmove usr/lib/mpg123/output_sdl.so
|
||||
}
|
||||
}
|
||||
|
||||
mpg123-sndio_package() {
|
||||
depends="libmpg123-${version}_${revision}"
|
||||
short_desc+=" - sndio output plugin"
|
||||
|
|
Loading…
Reference in New Issue