aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Talavera-Greenberg <jessetalavera@aol.com>2017-08-21 17:52:09 -0400
committerJesse Talavera-Greenberg <jessetalavera@aol.com>2017-08-21 17:52:09 -0400
commited9ef70d3f83db8a4f0fb1705d79a14c1e9e986f (patch)
treea33072351cf1266d954ba9563bb2c68203883422
parent2083bb689a6fe3fc70065b950bbde1c1b867559e (diff)
downloadvcpkg-ed9ef70d3f83db8a4f0fb1705d79a14c1e9e986f.tar.gz
vcpkg-ed9ef70d3f83db8a4f0fb1705d79a14c1e9e986f.zip
Add opus support and update to latest revision
-rw-r--r--ports/allegro5/CONTROL4
-rw-r--r--ports/allegro5/portfile.cmake16
2 files changed, 10 insertions, 10 deletions
diff --git a/ports/allegro5/CONTROL b/ports/allegro5/CONTROL
index 2d3003935..4bb51ae4e 100644
--- a/ports/allegro5/CONTROL
+++ b/ports/allegro5/CONTROL
@@ -1,4 +1,4 @@
Source: allegro5
-Version: 5.2.1.0
+Version: 5.2.2.0
Description: Allegro is a cross-platform library mainly aimed at video game and multimedia programming. It handles common, low-level tasks such as creating windows, accepting user input, loading data, drawing images, playing sounds, etc. and generally abstracting away the underlying platform. However, Allegro is not a game engine: you are free to design and structure your program as you like.
-Build-Depends: opengl, zlib, freetype, libogg, libvorbis, libflac, openal-soft, libpng, bzip2, physfs, libtheora \ No newline at end of file
+Build-Depends: opengl, zlib, freetype, libogg, libvorbis, libflac, openal-soft, libpng, bzip2, physfs, libtheora, opus, opusfile \ No newline at end of file
diff --git a/ports/allegro5/portfile.cmake b/ports/allegro5/portfile.cmake
index d2801d5d4..7d9f8e062 100644
--- a/ports/allegro5/portfile.cmake
+++ b/ports/allegro5/portfile.cmake
@@ -11,19 +11,19 @@
#
include(vcpkg_common_functions)
-set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/allegro5-7d8892a9278c57f2d8bb1e555f9ec59cf9ed4f73)
+set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/allegro5-e8b209bc20a60224859eb8a0cae082bd20d32ed1)
vcpkg_from_github(
OUT_SOURCE_PATH ${SOURCE_PATH}
REPO liballeg/allegro5
- REF 7d8892a9278c57f2d8bb1e555f9ec59cf9ed4f73
- SHA512 b1531fa2f22023ecd4e053d03d1c54bf0b94aa3af004a3a06245c4d8278fea64e9d354467873ebd665301903d954795fed88e2467c88441f39c273e7e0d87d6e
+ REF e8b209bc20a60224859eb8a0cae082bd20d32ed1
+ SHA512 50b30d4b539bd4a2488d2b33e9fbfc6fdfd340039d9086993a5719bab3cb020ee6fe7f6d3578755a52c8aab9816d25cd74710ce93b0b374a2f97620b6138419d
HEAD_REF master
)
if (VCPKG_LIBRARY_LINKAGE STREQUAL "dynamic")
- set(ALLEGRO_USE_STATIC -DSHARED=ON)
+ set(ALLEGRO_USE_STATIC ON)
else()
- set(ALLEGRO_USE_STATIC -DSHARED=OFF)
+ set(ALLEGRO_USE_STATIC OFF)
endif()
vcpkg_apply_patches(
@@ -39,7 +39,7 @@ vcpkg_configure_cmake(
-DWANT_DOCS=OFF
-DALLEGRO_SDL=OFF
-DWANT_DEMO=OFF
- ${ALLEGRO_USE_STATIC}
+ -DSHARED=${ALLEGRO_USE_STATIC}
-DWANT_EXAMPLES=OFF
-DWANT_CURL_EXAMPLE=OFF
-DWANT_TESTS=OFF
@@ -63,7 +63,7 @@ vcpkg_configure_cmake(
-DWANT_OPENAL=ON
-DWANT_OPENGL=ON
-DWANT_OPENSL=OFF # Not yet available on vcpkg
- -DWANT_OPUS=OFF # opus is available on vcpkg, but opusfile isn't
+ -DWANT_OPUS=ON
-DWANT_PHYSFS=ON
-DWANT_POPUP_EXAMPLES=OFF
-DWANT_PRIMITIVES=ON
@@ -77,7 +77,7 @@ vcpkg_configure_cmake(
-DOPENAL_INCLUDE_DIR=${CURRENT_INSTALLED_DIR}/include/AL
-DZLIB_INCLUDE_DIR=${CURRENT_INSTALLED_DIR}/include
OPTIONS_RELEASE -DWANT_ALLOW_SSE=ON
- OPTIONS_DEBUG -DWANT_ALLOW_SSE=OFF
+ OPTIONS_DEBUG -DWANT_ALLOW_SSE=OFF -DCMAKE_BUILD_TYPE=Debug
)
vcpkg_install_cmake()