mirror of
https://github.com/chocolate-doom/chocpkg.git
synced 2025-02-18 18:01:23 +00:00
Add 'latest' build variants for several libraries.
This commit is contained in:
parent
1f2c3eb9e9
commit
840683540e
4 changed files with 14 additions and 7 deletions
|
@ -2,8 +2,10 @@ description "Library for encoding/decoding .flac lossless audio files"
|
|||
dependencies libogg
|
||||
check_pkgconfig flac
|
||||
# We use a repacked mirror since flac is released as .xz rather than .gz:
|
||||
fetch_download https://www.chocolate-doom.org/depends/flac-1.3.1.tar.gz \
|
||||
4ae2c8ee48b3ae52635e543b1e64b58f5dcb8d69e1e18257da82f800cb754861
|
||||
variant stable fetch_download \
|
||||
https://www.chocolate-doom.org/depends/flac-1.3.1.tar.gz \
|
||||
4ae2c8ee48b3ae52635e543b1e64b58f5dcb8d69e1e18257da82f800cb754861
|
||||
variant latest fetch_git https://github.com/xiph/flac.git master
|
||||
|
||||
# Compile problems :(
|
||||
build_autotools --disable-asm-optimizations
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
description "Library for reading .ogg container files"
|
||||
check_pkgconfig ogg
|
||||
fetch_download http://downloads.xiph.org/releases/ogg/libogg-1.3.2.tar.gz \
|
||||
e19ee34711d7af328cb26287f4137e70630e7261b17cbe3cd41011d73a654692
|
||||
variant stable fetch_download \
|
||||
http://downloads.xiph.org/releases/ogg/libogg-1.3.2.tar.gz \
|
||||
e19ee34711d7af328cb26287f4137e70630e7261b17cbe3cd41011d73a654692
|
||||
variant latest fetch_git https://github.com/xiph/ogg.git master
|
||||
build_autotools
|
||||
|
|
|
@ -2,6 +2,8 @@ description "Library for reading/writing .png image files"
|
|||
dependencies zlib
|
||||
check_pkgconfig libpng
|
||||
# We maintain a mirror since libpng is only downloadable via Sourceforge:
|
||||
fetch_download https://www.chocolate-doom.org/depends/libpng-1.6.10.tar.gz \
|
||||
b0206a22b49c91fc5521b2cfb1c251433a37aed0a645bc504ab3d061f27e4d51
|
||||
variant stable fetch_download \
|
||||
https://www.chocolate-doom.org/depends/libpng-1.6.10.tar.gz \
|
||||
b0206a22b49c91fc5521b2cfb1c251433a37aed0a645bc504ab3d061f27e4d51
|
||||
variant latest fetch_git https://github.com/glennrp/libpng.git libpng16
|
||||
build_autotools
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
description "Library for compressing/decompressing GZIP files"
|
||||
check_pkgconfig zlib
|
||||
fetch_download http://www.zlib.net/fossils/zlib-1.2.11.tar.gz \
|
||||
variant stable fetch_download http://www.zlib.net/fossils/zlib-1.2.11.tar.gz \
|
||||
c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1
|
||||
variant latest fetch_git https://github.com/madler/zlib.git master
|
||||
build_autotools
|
||||
|
||||
# zlib's configure script is hand-rolled and doesn't support the normal
|
||||
|
|
Loading…
Reference in a new issue