1#*************************************************************************** 2# Project ___ __ _ _ __ ___ ___ 3# / __|____ / _` | '__/ _ \/ __| 4# | (_|_____| (_| | | | __/\__ \ 5# \___| \__,_|_| \___||___/ 6# 7# Copyright (C) The c-ares project and its contributors 8# SPDX-License-Identifier: MIT 9prefix=@CMAKE_INSTALL_PREFIX@ 10exec_prefix=${prefix}/@CMAKE_INSTALL_BINDIR@ 11libdir=${prefix}/@CMAKE_INSTALL_LIBDIR@ 12includedir=${prefix}/@CMAKE_INSTALL_INCLUDEDIR@ 13 14Name: c-ares 15URL: https://c-ares.org/ 16Description: asynchronous DNS lookup library 17Version: @CARES_VERSION@ 18Requires: 19Requires.private: 20Cflags: -I${includedir} 21Cflags.private: -DCARES_STATICLIB 22Libs: -L${libdir} -lcares 23Libs.private: @CARES_PRIVATE_LIBS@ 24