diff options
author | Max Kellermann <max@musicpd.org> | 2018-01-05 07:27:09 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2018-01-05 07:27:09 +0100 |
commit | 4183416b3ec30978b991f8380ead48fb02db4ba3 (patch) | |
tree | 5309a9afba21cdb39631bb90804bfb8d76c54b87 /python | |
parent | a60dee57ce5dcdb288ac469e951aca231ea358d9 (diff) |
python/build/libs.py: reindent arrays
Diffstat (limited to 'python')
-rw-r--r-- | python/build/libs.py | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/python/build/libs.py b/python/build/libs.py index a5cc689e9..605b04f5d 100644 --- a/python/build/libs.py +++ b/python/build/libs.py @@ -8,21 +8,27 @@ libogg = AutotoolsProject( 'http://downloads.xiph.org/releases/ogg/libogg-1.3.2.tar.xz', '5c3a34309d8b98640827e5d0991a4015', 'lib/libogg.a', - ['--disable-shared', '--enable-static'], + [ + '--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'], + [ + '--disable-shared', '--enable-static', + ], ) opus = AutotoolsProject( 'https://archive.mozilla.org/pub/opus/opus-1.2.1.tar.gz', 'cfafd339ccd9c5ef8d6ab15d7e1a412c054bf4cb4ecbbbcc78c12ef2def70732', 'lib/libopus.a', - ['--disable-shared', '--enable-static'], + [ + '--disable-shared', '--enable-static', + ], ) flac = AutotoolsProject( @@ -45,7 +51,9 @@ libid3tag = AutotoolsProject( 'ftp://ftp.mars.org/pub/mpeg/libid3tag-0.15.1b.tar.gz', 'e5808ad997ba32c498803822078748c3', 'lib/libid3tag.a', - ['--disable-shared', '--enable-static'], + [ + '--disable-shared', '--enable-static', + ], autogen=True, ) @@ -53,7 +61,9 @@ libmad = AutotoolsProject( 'ftp://ftp.mars.org/pub/mpeg/libmad-0.15.1b.tar.gz', '1be543bc30c56fb6bea1d7bf6a64e66c', 'lib/libmad.a', - ['--disable-shared', '--enable-static'], + [ + '--disable-shared', '--enable-static', + ], autogen=True, ) |