Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
019aea3d
Commit
019aea3d
authored
Nov 23, 2015
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
{android,win32}/build.py: move code to python/build/libs.py
parent
21439108
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
129 additions
and
206 deletions
+129
-206
build.py
android/build.py
+10
-105
libs.py
python/build/libs.py
+109
-0
build.py
win32/build.py
+10
-101
No files found.
android/build.py
View file @
019aea3d
...
...
@@ -107,113 +107,18 @@ class AndroidNdkToolchain:
# default one on the build host
self
.
env
[
'PKG_CONFIG_LIBDIR'
]
=
os
.
path
.
join
(
install_prefix
,
'lib/pkgconfig'
)
from
build.project
import
Project
from
build.autotools
import
AutotoolsProject
from
build.ffmpeg
import
FfmpegProject
from
build.boost
import
BoostProject
# a list of third-party libraries to be used by MPD on Android
from
build.libs
import
*
thirdparty_libs
=
[
AutotoolsProject
(
'http://downloads.xiph.org/releases/ogg/libogg-1.3.2.tar.xz'
,
'5c3a34309d8b98640827e5d0991a4015'
,
'lib/libogg.a'
,
[
'--disable-shared'
,
'--enable-static'
],
),
AutotoolsProject
(
'http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.5.tar.xz'
,
'28cb28097c07a735d6af56e598e1c90f'
,
'lib/libvorbis.a'
,
[
'--disable-shared'
,
'--enable-static'
],
),
AutotoolsProject
(
'http://downloads.xiph.org/releases/opus/opus-1.1.tar.gz'
,
'c5a8cf7c0b066759542bc4ca46817ac6'
,
'lib/libopus.a'
,
[
'--disable-shared'
,
'--enable-static'
],
use_clang
=
True
,
),
AutotoolsProject
(
'http://downloads.xiph.org/releases/flac/flac-1.3.1.tar.xz'
,
'b9922c9a0378c88d3e901b234f852698'
,
'lib/libFLAC.a'
,
[
'--disable-shared'
,
'--enable-static'
,
'--disable-xmms-plugin'
,
'--disable-cpplibs'
,
],
use_clang
=
True
,
),
AutotoolsProject
(
'ftp://ftp.mars.org/pub/mpeg/libid3tag-0.15.1b.tar.gz'
,
'e5808ad997ba32c498803822078748c3'
,
'lib/libid3tag.a'
,
[
'--disable-shared'
,
'--enable-static'
],
autogen
=
True
,
),
AutotoolsProject
(
'ftp://ftp.mars.org/pub/mpeg/libmad-0.15.1b.tar.gz'
,
'1be543bc30c56fb6bea1d7bf6a64e66c'
,
'lib/libmad.a'
,
[
'--disable-shared'
,
'--enable-static'
],
autogen
=
True
,
),
FfmpegProject
(
'http://ffmpeg.org/releases/ffmpeg-2.8.2.tar.xz'
,
'5041ffe661392b0685d2248114791fde'
,
'lib/libavcodec.a'
,
[
'--disable-shared'
,
'--enable-static'
,
'--enable-gpl'
,
'--enable-small'
,
'--disable-pthreads'
,
'--disable-programs'
,
'--disable-doc'
,
'--disable-avdevice'
,
'--disable-swresample'
,
'--disable-swscale'
,
'--disable-postproc'
,
'--disable-avfilter'
,
'--disable-network'
,
'--disable-encoders'
,
'--disable-protocols'
,
'--disable-outdevs'
,
'--disable-filters'
,
],
),
AutotoolsProject
(
'http://curl.haxx.se/download/curl-7.45.0.tar.lzma'
,
'c9a0a77f71fdc6b0f925bc3e79eb77f6'
,
'lib/libcurl.a'
,
[
'--disable-shared'
,
'--enable-static'
,
'--disable-debug'
,
'--enable-http'
,
'--enable-ipv6'
,
'--disable-ftp'
,
'--disable-file'
,
'--disable-ldap'
,
'--disable-ldaps'
,
'--disable-rtsp'
,
'--disable-proxy'
,
'--disable-dict'
,
'--disable-telnet'
,
'--disable-tftp'
,
'--disable-pop3'
,
'--disable-imap'
,
'--disable-smtp'
,
'--disable-gopher'
,
'--disable-manual'
,
'--disable-threaded-resolver'
,
'--disable-verbose'
,
'--disable-sspi'
,
'--disable-crypto-auth'
,
'--disable-ntlm-wb'
,
'--disable-tls-srp'
,
'--disable-cookies'
,
'--without-ssl'
,
'--without-gnutls'
,
'--without-nss'
,
'--without-libssh2'
,
],
use_clang
=
True
,
),
BoostProject
(
'http://netcologne.dl.sourceforge.net/project/boost/boost/1.59.0/boost_1_59_0.tar.bz2'
,
'6aa9a5c6a4ca1016edd0ed1178e3cb87'
,
'include/boost/version.hpp'
,
),
libogg
,
libvorbis
,
opus
,
flac
,
libid3tag
,
libmad
,
ffmpeg
,
curl
,
boost
,
]
# build the third-party libraries
...
...
python/build/libs.py
0 → 100644
View file @
019aea3d
from
build.project
import
Project
from
build.zlib
import
ZlibProject
from
build.autotools
import
AutotoolsProject
from
build.ffmpeg
import
FfmpegProject
from
build.boost
import
BoostProject
libogg
=
AutotoolsProject
(
'http://downloads.xiph.org/releases/ogg/libogg-1.3.2.tar.xz'
,
'5c3a34309d8b98640827e5d0991a4015'
,
'lib/libogg.a'
,
[
'--disable-shared'
,
'--enable-static'
],
)
libvorbis
=
AutotoolsProject
(
'http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.5.tar.xz'
,
'28cb28097c07a735d6af56e598e1c90f'
,
'lib/libvorbis.a'
,
[
'--disable-shared'
,
'--enable-static'
],
)
opus
=
AutotoolsProject
(
'http://downloads.xiph.org/releases/opus/opus-1.1.tar.gz'
,
'c5a8cf7c0b066759542bc4ca46817ac6'
,
'lib/libopus.a'
,
[
'--disable-shared'
,
'--enable-static'
],
)
flac
=
AutotoolsProject
(
'http://downloads.xiph.org/releases/flac/flac-1.3.1.tar.xz'
,
'b9922c9a0378c88d3e901b234f852698'
,
'lib/libFLAC.a'
,
[
'--disable-shared'
,
'--enable-static'
,
'--disable-xmms-plugin'
,
'--disable-cpplibs'
,
],
)
zlib
=
ZlibProject
(
'http://zlib.net/zlib-1.2.8.tar.xz'
,
'28f1205d8dd2001f26fec1e8c2cebe37'
,
'lib/libz.a'
,
)
libid3tag
=
AutotoolsProject
(
'ftp://ftp.mars.org/pub/mpeg/libid3tag-0.15.1b.tar.gz'
,
'e5808ad997ba32c498803822078748c3'
,
'lib/libid3tag.a'
,
[
'--disable-shared'
,
'--enable-static'
],
autogen
=
True
,
)
libmad
=
AutotoolsProject
(
'ftp://ftp.mars.org/pub/mpeg/libmad-0.15.1b.tar.gz'
,
'1be543bc30c56fb6bea1d7bf6a64e66c'
,
'lib/libmad.a'
,
[
'--disable-shared'
,
'--enable-static'
],
autogen
=
True
,
)
ffmpeg
=
FfmpegProject
(
'http://ffmpeg.org/releases/ffmpeg-2.8.2.tar.xz'
,
'5041ffe661392b0685d2248114791fde'
,
'lib/libavcodec.a'
,
[
'--disable-shared'
,
'--enable-static'
,
'--enable-gpl'
,
'--enable-small'
,
'--disable-pthreads'
,
'--disable-programs'
,
'--disable-doc'
,
'--disable-avdevice'
,
'--disable-swresample'
,
'--disable-swscale'
,
'--disable-postproc'
,
'--disable-avfilter'
,
'--disable-network'
,
'--disable-encoders'
,
'--disable-protocols'
,
'--disable-outdevs'
,
'--disable-filters'
,
],
)
curl
=
AutotoolsProject
(
'http://curl.haxx.se/download/curl-7.45.0.tar.lzma'
,
'c9a0a77f71fdc6b0f925bc3e79eb77f6'
,
'lib/libcurl.a'
,
[
'--disable-shared'
,
'--enable-static'
,
'--disable-debug'
,
'--enable-http'
,
'--enable-ipv6'
,
'--disable-ftp'
,
'--disable-file'
,
'--disable-ldap'
,
'--disable-ldaps'
,
'--disable-rtsp'
,
'--disable-proxy'
,
'--disable-dict'
,
'--disable-telnet'
,
'--disable-tftp'
,
'--disable-pop3'
,
'--disable-imap'
,
'--disable-smtp'
,
'--disable-gopher'
,
'--disable-manual'
,
'--disable-threaded-resolver'
,
'--disable-verbose'
,
'--disable-sspi'
,
'--disable-crypto-auth'
,
'--disable-ntlm-wb'
,
'--disable-tls-srp'
,
'--disable-cookies'
,
'--without-ssl'
,
'--without-gnutls'
,
'--without-nss'
,
'--without-libssh2'
,
],
)
boost
=
BoostProject
(
'http://netcologne.dl.sourceforge.net/project/boost/boost/1.59.0/boost_1_59_0.tar.bz2'
,
'6aa9a5c6a4ca1016edd0ed1178e3cb87'
,
'include/boost/version.hpp'
,
)
win32/build.py
View file @
019aea3d
...
...
@@ -55,109 +55,18 @@ class CrossGccToolchain:
# default one on the build host
self
.
env
[
'PKG_CONFIG_LIBDIR'
]
=
os
.
path
.
join
(
install_prefix
,
'lib/pkgconfig'
)
from
build.project
import
Project
from
build.zlib
import
ZlibProject
from
build.autotools
import
AutotoolsProject
from
build.ffmpeg
import
FfmpegProject
from
build.boost
import
BoostProject
# a list of third-party libraries to be used by MPD on Android
from
build.libs
import
*
thirdparty_libs
=
[
AutotoolsProject
(
'http://downloads.xiph.org/releases/ogg/libogg-1.3.2.tar.xz'
,
'5c3a34309d8b98640827e5d0991a4015'
,
'lib/libogg.a'
,
[
'--disable-shared'
,
'--enable-static'
],
),
AutotoolsProject
(
'http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.5.tar.xz'
,
'28cb28097c07a735d6af56e598e1c90f'
,
'lib/libvorbis.a'
,
[
'--disable-shared'
,
'--enable-static'
],
),
AutotoolsProject
(
'http://downloads.xiph.org/releases/opus/opus-1.1.tar.gz'
,
'c5a8cf7c0b066759542bc4ca46817ac6'
,
'lib/libopus.a'
,
[
'--disable-shared'
,
'--enable-static'
],
),
AutotoolsProject
(
'http://downloads.xiph.org/releases/flac/flac-1.3.1.tar.xz'
,
'b9922c9a0378c88d3e901b234f852698'
,
'lib/libFLAC.a'
,
[
'--disable-shared'
,
'--enable-static'
,
'--disable-xmms-plugin'
,
'--disable-cpplibs'
,
],
),
ZlibProject
(
'http://zlib.net/zlib-1.2.8.tar.xz'
,
'28f1205d8dd2001f26fec1e8c2cebe37'
,
'lib/libz.a'
,
),
AutotoolsProject
(
'ftp://ftp.mars.org/pub/mpeg/libid3tag-0.15.1b.tar.gz'
,
'e5808ad997ba32c498803822078748c3'
,
'lib/libid3tag.a'
,
[
'--disable-shared'
,
'--enable-static'
],
autogen
=
True
,
),
FfmpegProject
(
'http://ffmpeg.org/releases/ffmpeg-2.8.2.tar.xz'
,
'5041ffe661392b0685d2248114791fde'
,
'lib/libavcodec.a'
,
[
'--disable-shared'
,
'--enable-static'
,
'--enable-gpl'
,
'--enable-small'
,
'--disable-pthreads'
,
'--disable-programs'
,
'--disable-doc'
,
'--disable-avdevice'
,
'--disable-swresample'
,
'--disable-swscale'
,
'--disable-postproc'
,
'--disable-avfilter'
,
'--disable-network'
,
'--disable-encoders'
,
'--disable-protocols'
,
'--disable-outdevs'
,
'--disable-filters'
,
],
),
AutotoolsProject
(
'http://curl.haxx.se/download/curl-7.45.0.tar.lzma'
,
'c9a0a77f71fdc6b0f925bc3e79eb77f6'
,
'lib/libcurl.a'
,
[
'--disable-shared'
,
'--enable-static'
,
'--disable-debug'
,
'--enable-http'
,
'--enable-ipv6'
,
'--disable-ftp'
,
'--disable-file'
,
'--disable-ldap'
,
'--disable-ldaps'
,
'--disable-rtsp'
,
'--disable-proxy'
,
'--disable-dict'
,
'--disable-telnet'
,
'--disable-tftp'
,
'--disable-pop3'
,
'--disable-imap'
,
'--disable-smtp'
,
'--disable-gopher'
,
'--disable-manual'
,
'--disable-threaded-resolver'
,
'--disable-verbose'
,
'--disable-sspi'
,
'--disable-crypto-auth'
,
'--disable-ntlm-wb'
,
'--disable-tls-srp'
,
'--disable-cookies'
,
'--without-ssl'
,
'--without-gnutls'
,
'--without-nss'
,
'--without-libssh2'
,
],
),
BoostProject
(
'http://netcologne.dl.sourceforge.net/project/boost/boost/1.59.0/boost_1_59_0.tar.bz2'
,
'6aa9a5c6a4ca1016edd0ed1178e3cb87'
,
'include/boost/version.hpp'
,
),
libogg
,
libvorbis
,
opus
,
flac
,
zlib
,
libid3tag
,
ffmpeg
,
curl
,
boost
,
]
# build the third-party libraries
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment