diff options
| author | Robert Schumacher <roschuma@microsoft.com> | 2017-07-20 19:11:02 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-07-20 19:11:02 -0700 |
| commit | 4c71ef3cc884385024306cb8aaec765b3605e569 (patch) | |
| tree | 69ba08a1eb3c4f246505e8d42ab6c57410dc6922 /ports/libmikmod | |
| parent | 96574d20b922fd6ea956cd192b2c6fb5a0524e42 (diff) | |
| parent | a354afaae34f3c1525271da8f58044b7a3b5ea40 (diff) | |
| download | vcpkg-4c71ef3cc884385024306cb8aaec765b3605e569.tar.gz vcpkg-4c71ef3cc884385024306cb8aaec765b3605e569.zip | |
Merge pull request #1466 from JesseTG/jtg/two-libraries
Add ports for libmikmod and allegro5
Diffstat (limited to 'ports/libmikmod')
| -rw-r--r-- | ports/libmikmod/CONTROL | 4 | ||||
| -rw-r--r-- | ports/libmikmod/portfile.cmake | 52 |
2 files changed, 56 insertions, 0 deletions
diff --git a/ports/libmikmod/CONTROL b/ports/libmikmod/CONTROL new file mode 100644 index 000000000..b9f970959 --- /dev/null +++ b/ports/libmikmod/CONTROL @@ -0,0 +1,4 @@ +Source: libmikmod +Version: 3.3.11.1 +Description: Mikmod is a module player and library supporting many formats, including mod, s3m, it, and xm. +Build-Depends: openal-soft
\ No newline at end of file diff --git a/ports/libmikmod/portfile.cmake b/ports/libmikmod/portfile.cmake new file mode 100644 index 000000000..1231f5bfa --- /dev/null +++ b/ports/libmikmod/portfile.cmake @@ -0,0 +1,52 @@ +# Common Ambient Variables: +# CURRENT_BUILDTREES_DIR = ${VCPKG_ROOT_DIR}\buildtrees\${PORT} +# CURRENT_PACKAGES_DIR = ${VCPKG_ROOT_DIR}\packages\${PORT}_${TARGET_TRIPLET} +# CURRENT_PORT_DIR = ${VCPKG_ROOT_DIR}\ports\${PORT} +# PORT = current port name (zlib, etc) +# TARGET_TRIPLET = current triplet (x86-windows, x64-windows-static, etc) +# VCPKG_CRT_LINKAGE = C runtime linkage type (static, dynamic) +# VCPKG_LIBRARY_LINKAGE = target library linkage type (static, dynamic) +# VCPKG_ROOT_DIR = <C:\path\to\current\vcpkg> +# VCPKG_TARGET_ARCHITECTURE = target architecture (x64, x86, arm) +# + +include(vcpkg_common_functions) +set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/libmikmod-3.3.11.1) +vcpkg_download_distfile(ARCHIVE + URLS "https://downloads.sourceforge.net/project/mikmod/libmikmod/3.3.11.1/libmikmod-3.3.11.1.tar.gz" + FILENAME "libmikmod-3.3.11.1.tar.gz" + SHA512 f2439e2b691613847cd0787dd4e050116683ce7b05c215b8afecde5c6add819ea6c18e678e258c0a80786bef463f406072de15127f64368f694287a5e8e1a9de +) +vcpkg_extract_source_archive(${ARCHIVE}) + +vcpkg_configure_cmake( + SOURCE_PATH ${SOURCE_PATH} + PREFER_NINJA # Disable this option if project cannot be built with Ninja + OPTIONS + -DENABLE_DOC=OFF + -DENABLE_THREADS=ON + -DDISABLE_HQMIXER=OFF + -DENABLE_AF=ON + -DENABLE_AIFF=ON + -DENABLE_NAS=ON + -DENABLE_OPENAL=ON + -DENABLE_PIPE=ON + -DENABLE_RAW=ON + -DENABLE_STDOUT=ON + -DENABLE_WAV=ON + -DOPENAL_INCLUDE_DIR=${CURRENT_INSTALLED_DIR}/include + OPTIONS_RELEASE -DENABLE_SIMD=ON + OPTIONS_DEBUG -DENABLE_SIMD=OFF +) + +vcpkg_install_cmake() + +# Handle copyright +file(COPY ${SOURCE_PATH}/COPYING.LESSER DESTINATION ${CURRENT_PACKAGES_DIR}/share/libmikmod) +file(RENAME ${CURRENT_PACKAGES_DIR}/share/libmikmod/COPYING.LESSER ${CURRENT_PACKAGES_DIR}/share/libmikmod/copyright) + +file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) + +if(VCPKG_LIBRARY_LINKAGE STREQUAL static) + file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/bin ${CURRENT_PACKAGES_DIR}/debug/bin) +endif()
\ No newline at end of file |
