100 lines
3.4 KiB
Bash
100 lines
3.4 KiB
Bash
# Maintainer: Alexey Pavlov <alexpux@gmail.com>
|
|
|
|
_realname=SDL_mixer
|
|
pkgbase=mingw-w64-${_realname}
|
|
pkgname=${MINGW_PACKAGE_PREFIX}-${_realname}
|
|
pkgver=1.2.12
|
|
pkgrel=10
|
|
pkgdesc="A simple multi-channel audio mixer (mingw-w64)"
|
|
arch=('any')
|
|
mingw_arch=('mingw64' 'ucrt64' 'clang64' 'clangarm64')
|
|
url="https://libsdl.org/projects/SDL_mixer/"
|
|
license=('custom')
|
|
depends=("${MINGW_PACKAGE_PREFIX}-SDL"
|
|
"${MINGW_PACKAGE_PREFIX}-libvorbis"
|
|
"${MINGW_PACKAGE_PREFIX}-libmikmod"
|
|
"${MINGW_PACKAGE_PREFIX}-libmad"
|
|
"${MINGW_PACKAGE_PREFIX}-flac"
|
|
)
|
|
makedepends=("${MINGW_PACKAGE_PREFIX}-cc"
|
|
"${MINGW_PACKAGE_PREFIX}-autotools"
|
|
"${MINGW_PACKAGE_PREFIX}-fluidsynth"
|
|
"${MINGW_PACKAGE_PREFIX}-openal"
|
|
"${MINGW_PACKAGE_PREFIX}-smpeg")
|
|
optdepends=("${MINGW_PACKAGE_PREFIX}-fluidsynth: MIDI software synth, replaces built-in timidity")
|
|
source=(https://libsdl.org/projects/SDL_mixer/release/${_realname}-${pkgver}.tar.gz
|
|
001-mikmod1.patch
|
|
002-mikmod2.patch
|
|
003-fluidsynth-volume.patch
|
|
004-double-free-crash.patch
|
|
005-SDL_mixer-find_lib.mingw.patch
|
|
006-autoreconf-fix.patch
|
|
007-non-void-return-value.patch
|
|
008-missing-fluidsynth.patch)
|
|
sha256sums=('1644308279a975799049e4826af2cfc787cad2abb11aa14562e402521f86992a'
|
|
'17bc8704a0e6e66b1a79ae4f58f0fdf0a58ff64db86980b2e0fa7ef352042cdb'
|
|
'7a0fd237def865ec8376ec0f534e75ad4bc1ba6dff66774112cd2f2700ae9a9c'
|
|
'1cc663048ef57c9238a10109bbbbef3b49e2c9d2dbd7c71c7c2f0673a6417e14'
|
|
'912d5b8342eec3626fe61389531f7fe941c9aa6f463cf2681948a739d3c53f35'
|
|
'b204e67c0489dfa9dba32e6f5a6ed554fca6c61d155701af35a41fea5b4db589'
|
|
'cdd0f47ac42890fe1d8110fa1cd6106b8e143ab8e9ddb7967e891ac149380add'
|
|
'20e3e7881960ed86b036ad64c2c4f336d72be0779ce9176bca865b7c35e41253'
|
|
'6d6be57e3812e385b9eb59ab2f9eb7d650bd54a1d61a30c3081f555c528fb09d')
|
|
noextract=(${_realname}-${pkgver}.tar.gz)
|
|
|
|
apply_patch_with_msg() {
|
|
for _fname in "$@"
|
|
do
|
|
msg2 "Applying ${_fname}"
|
|
patch -Nbp1 -i "${srcdir}"/${_fname}
|
|
done
|
|
}
|
|
|
|
prepare() {
|
|
[[ -d "${srcdir}"/${_realname}-${pkgver} ]] && rm -rf "${srcdir}"/${_realname}-${pkgver}
|
|
tar -xzf "${srcdir}"/${_realname}-${pkgver}.tar.gz -C "${srcdir}" || true
|
|
|
|
cd "${srcdir}/${_realname}-${pkgver}"
|
|
|
|
apply_patch_with_msg \
|
|
001-mikmod1.patch \
|
|
002-mikmod2.patch \
|
|
003-fluidsynth-volume.patch \
|
|
004-double-free-crash.patch \
|
|
005-SDL_mixer-find_lib.mingw.patch \
|
|
006-autoreconf-fix.patch \
|
|
007-non-void-return-value.patch \
|
|
008-missing-fluidsynth.patch
|
|
|
|
#sed -e "/CONFIG_FILE_ETC/s|/etc/timidity.cfg|/etc/timidity++/timidity.cfg|" \
|
|
# -e "/DEFAULT_PATH/s|/etc/timidity|/etc/timidity++|" \
|
|
# -e "/DEFAULT_PATH2/s|/usr/local/lib/timidity|/usr/lib/timidity|" \
|
|
# -i timidity/config.h
|
|
|
|
autoreconf -fiv
|
|
}
|
|
|
|
build() {
|
|
mkdir -p "${srcdir}/build-${MSYSTEM}" && cd "${srcdir}/build-${MSYSTEM}"
|
|
|
|
export lt_cv_deplibs_check_method='pass_all'
|
|
../${_realname}-${pkgver}/configure \
|
|
--prefix=${MINGW_PREFIX} \
|
|
--build=${MINGW_CHOST} \
|
|
--host=${MINGW_CHOST} \
|
|
--enable-shared \
|
|
--enable-static \
|
|
--disable-music-mp3 \
|
|
--enable-music-mp3-mad-gpl
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/build-${MSYSTEM}/"
|
|
|
|
make DESTDIR="${pkgdir}/" install
|
|
install -Dm644 "${srcdir}/${_realname}-${pkgver}/COPYING" \
|
|
"${pkgdir}${MINGW_PREFIX}/share/licenses/${_realname}/LICENSE"
|
|
}
|