mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-26 11:39:06 +08:00
902745368f
* [alsa] Update to 1.2.8. * [alsa] Update baseline. * [alsa] Remove redundant error message in portfile. This issue is handled in through the manifest "supports" field. * [alsa] Update version.
69 lines
2.1 KiB
CMake
69 lines
2.1 KiB
CMake
message(
|
|
"alsa currently requires the following programs from the system package manager:
|
|
autoconf autoheader aclocal automake libtoolize
|
|
On Debian and Ubuntu derivatives:
|
|
sudo apt install autoconf libtool
|
|
On recent Red Hat and Fedora derivatives:
|
|
sudo dnf install autoconf libtool
|
|
On Arch Linux and derivatives:
|
|
sudo pacman -S autoconf automake libtool
|
|
On Alpine:
|
|
apk add autoconf automake libtool"
|
|
)
|
|
|
|
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO alsa-project/alsa-lib
|
|
REF "v${VERSION}"
|
|
SHA512 34ebeb64fd43432df779bfd6de08fb26cfd59d75586100cab7308d1ecf60d722cf137f1209426a288bdbaa27c31e963ce09690272b8d85653989a935a6fc50af
|
|
HEAD_REF master
|
|
PATCHES
|
|
"fix-plugin-dir.patch"
|
|
)
|
|
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL dynamic)
|
|
set(BUILD_OPTS --enable-shared=yes --enable-static=no)
|
|
else()
|
|
set(BUILD_OPTS --enable-shared=no --enable-static=yes)
|
|
endif()
|
|
|
|
|
|
|
|
if(VCPKG_TARGET_ARCHITECTURE STREQUAL "x64")
|
|
set(ALSA_PLUGIN_DIR "/usr/lib/x86_64-linux-gnu/alsa-lib")
|
|
elseif(VCPKG_TARGET_ARCHITECTURE STREQUAL "arm64")
|
|
set(ALSA_PLUGIN_DIR "/usr/lib/aarch64-linux-gnu/alsa-lib")
|
|
elseif(VCPKG_TARGET_ARCHITECTURE STREQUAL "arm")
|
|
set(ALSA_PLUGIN_DIR "/usr/lib/arm-linux-gnueabihf/alsa-lib")
|
|
elseif(VCPKG_TARGET_ARCHITECTURE STREQUAL "s390x")
|
|
set(ALSA_PLUGIN_DIR "/usr/lib/s390x-linux-gnu/alsa-lib")
|
|
elseif(VCPKG_TARGET_ARCHITECTURE STREQUAL "ppc64le")
|
|
set(ALSA_PLUGIN_DIR "/usr/lib/powerpc64le-linux-gnu/alsa-lib")
|
|
else()
|
|
set(ALSA_PLUGIN_DIR "/usr/lib/alsa-lib")
|
|
endif()
|
|
set(ALSA_CONFIG_DIR "/usr/share/alsa")
|
|
|
|
vcpkg_configure_make(
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
|
AUTOCONFIG
|
|
OPTIONS
|
|
${BUILD_OPTS}
|
|
--disable-python
|
|
"--with-configdir=${ALSA_CONFIG_DIR}"
|
|
"--with-plugindir=${ALSA_PLUGIN_DIR}"
|
|
)
|
|
|
|
vcpkg_install_make()
|
|
vcpkg_fixup_pkgconfig()
|
|
|
|
file(REMOVE_RECURSE
|
|
"${CURRENT_PACKAGES_DIR}/debug/include"
|
|
"${CURRENT_PACKAGES_DIR}/debug/share"
|
|
"${CURRENT_PACKAGES_DIR}/debug/tools/alsa/debug"
|
|
)
|
|
|
|
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/COPYING")
|
|
|
|
file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")
|