python/build/libs.py: add libmpdclient
This commit is contained in:
parent
786ac87b76
commit
62127bbb12
2
NEWS
2
NEWS
|
@ -7,6 +7,8 @@ ver 0.20.20 (not yet released)
|
||||||
- dsdiff, dsf: support more MIME types
|
- dsdiff, dsf: support more MIME types
|
||||||
- dsdiff, dsf: allow 4 MB ID3 tags
|
- dsdiff, dsf: allow 4 MB ID3 tags
|
||||||
- opus: support R128_ALBUM_GAIN tag
|
- opus: support R128_ALBUM_GAIN tag
|
||||||
|
* Android, Windows
|
||||||
|
- enable the "proxy" database plugin
|
||||||
|
|
||||||
ver 0.20.19 (2018/04/26)
|
ver 0.20.19 (2018/04/26)
|
||||||
* protocol
|
* protocol
|
||||||
|
|
|
@ -138,6 +138,7 @@ class AndroidNdkToolchain:
|
||||||
# a list of third-party libraries to be used by MPD on Android
|
# a list of third-party libraries to be used by MPD on Android
|
||||||
from build.libs import *
|
from build.libs import *
|
||||||
thirdparty_libs = [
|
thirdparty_libs = [
|
||||||
|
libmpdclient,
|
||||||
libogg,
|
libogg,
|
||||||
libvorbis,
|
libvorbis,
|
||||||
opus,
|
opus,
|
||||||
|
|
|
@ -3,10 +3,17 @@ from os.path import abspath
|
||||||
|
|
||||||
from build.project import Project
|
from build.project import Project
|
||||||
from build.zlib import ZlibProject
|
from build.zlib import ZlibProject
|
||||||
|
from build.meson import MesonProject
|
||||||
from build.autotools import AutotoolsProject
|
from build.autotools import AutotoolsProject
|
||||||
from build.ffmpeg import FfmpegProject
|
from build.ffmpeg import FfmpegProject
|
||||||
from build.boost import BoostProject
|
from build.boost import BoostProject
|
||||||
|
|
||||||
|
libmpdclient = MesonProject(
|
||||||
|
'https://www.musicpd.org/download/libmpdclient/2/libmpdclient-2.14.tar.xz',
|
||||||
|
'0a84e2791bfe3077cf22ee1784c805d5bb550803dffe56a39aa3690a38061372',
|
||||||
|
'lib/libmpdclient.a',
|
||||||
|
)
|
||||||
|
|
||||||
libogg = AutotoolsProject(
|
libogg = AutotoolsProject(
|
||||||
'http://downloads.xiph.org/releases/ogg/libogg-1.3.3.tar.xz',
|
'http://downloads.xiph.org/releases/ogg/libogg-1.3.3.tar.xz',
|
||||||
'4f3fc6178a533d392064f14776b23c397ed4b9f48f5de297aba73b643f955c08',
|
'4f3fc6178a533d392064f14776b23c397ed4b9f48f5de297aba73b643f955c08',
|
||||||
|
|
|
@ -76,6 +76,7 @@ class CrossGccToolchain:
|
||||||
# a list of third-party libraries to be used by MPD on Android
|
# a list of third-party libraries to be used by MPD on Android
|
||||||
from build.libs import *
|
from build.libs import *
|
||||||
thirdparty_libs = [
|
thirdparty_libs = [
|
||||||
|
libmpdclient,
|
||||||
libogg,
|
libogg,
|
||||||
libvorbis,
|
libvorbis,
|
||||||
opus,
|
opus,
|
||||||
|
|
Loading…
Reference in New Issue