aboutsummaryrefslogtreecommitdiff
path: root/ports/libmysql/portfile.cmake
blob: 530732b71ab69dc8dc0c184b43c5146a4b5cbfa7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
if (EXISTS "${CURRENT_INSTALLED_DIR}/include/mysql/mysql.h")
	message(FATAL_ERROR "FATAL ERROR: libmysql and libmariadb are incompatible.")
endif()

include(vcpkg_common_functions)
set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/mysql-server-mysql-5.7.17)

vcpkg_download_distfile(ARCHIVE
	URLS "https://github.com/mysql/mysql-server/archive/mysql-5.7.17.tar.gz"
	FILENAME "mysql-server-mysql-5.7.17.tar.gz"
	SHA512 511027f28f0705f59a08ec369b1ebe5d9a77eb839d545898631f1ebbcb6b4b800f5b88511d3ae5d231c04e09a2d7b2b2d178264d36aeb2bc602cc1b0b248cfba
)
vcpkg_extract_source_archive(${ARCHIVE})

vcpkg_apply_patches(
	SOURCE_PATH ${SOURCE_PATH}
	PATCHES
		${CMAKE_CURRENT_LIST_DIR}/boost_and_build.patch
)

vcpkg_configure_cmake(
	SOURCE_PATH ${SOURCE_PATH}
	OPTIONS
		-DWITHOUT_SERVER=ON
		-DWITH_UNIT_TESTS=OFF
		-DENABLED_PROFILING=OFF
		-DWIX_DIR=OFF
)

vcpkg_install_cmake()

# delete debug headers
file(REMOVE_RECURSE
	${CURRENT_PACKAGES_DIR}/debug/include)

# switch mysql into /mysql
file(RENAME ${CURRENT_PACKAGES_DIR}/include ${CURRENT_PACKAGES_DIR}/include2)
file(MAKE_DIRECTORY ${CURRENT_PACKAGES_DIR}/include)
file(RENAME ${CURRENT_PACKAGES_DIR}/include2 ${CURRENT_PACKAGES_DIR}/include/mysql)

## delete useless vcruntime/scripts/bin/msg file
file(REMOVE_RECURSE
	${CURRENT_PACKAGES_DIR}/share
	${CURRENT_PACKAGES_DIR}/debug/share
	${CURRENT_PACKAGES_DIR}/bin
	${CURRENT_PACKAGES_DIR}/debug/bin
	${CURRENT_PACKAGES_DIR}/docs
	${CURRENT_PACKAGES_DIR}/debug/docs
	${CURRENT_PACKAGES_DIR}/lib/debug)

# remove misc files
file(REMOVE
	${CURRENT_PACKAGES_DIR}/COPYING
	${CURRENT_PACKAGES_DIR}/README
	${CURRENT_PACKAGES_DIR}/debug/COPYING
	${CURRENT_PACKAGES_DIR}/debug/README)

# remove not-related libs
file (REMOVE
	${CURRENT_PACKAGES_DIR}/lib/mysqlservices.lib
	${CURRENT_PACKAGES_DIR}/debug/lib/mysqlservices.lib)

if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
	file(REMOVE
		${CURRENT_PACKAGES_DIR}/lib/libmysql.lib
		${CURRENT_PACKAGES_DIR}/lib/libmysql.dll
		${CURRENT_PACKAGES_DIR}/lib/libmysql.pdb
		${CURRENT_PACKAGES_DIR}/debug/lib/libmysql.lib
		${CURRENT_PACKAGES_DIR}/debug/lib/libmysql.dll
		${CURRENT_PACKAGES_DIR}/debug/lib/libmysql.pdb)
else()
	file(REMOVE
		${CURRENT_PACKAGES_DIR}/lib/mysqlclient.lib
		${CURRENT_PACKAGES_DIR}/debug/lib/mysqlclient.lib)

	# correct the dll directory
	file(MAKE_DIRECTORY ${CURRENT_PACKAGES_DIR}/bin)
	file(MAKE_DIRECTORY ${CURRENT_PACKAGES_DIR}/debug/bin)
	file (RENAME ${CURRENT_PACKAGES_DIR}/lib/libmysql.dll ${CURRENT_PACKAGES_DIR}/bin/libmysql.dll)
	file (RENAME ${CURRENT_PACKAGES_DIR}/lib/libmysql.pdb ${CURRENT_PACKAGES_DIR}/bin/libmysql.pdb)
	file (RENAME ${CURRENT_PACKAGES_DIR}/debug/lib/libmysql.dll ${CURRENT_PACKAGES_DIR}/debug/bin/libmysql.dll)
	file (RENAME ${CURRENT_PACKAGES_DIR}/debug/lib/libmysql.pdb ${CURRENT_PACKAGES_DIR}/debug/bin/libmysql.pdb)
endif()

# copy license
file(COPY ${SOURCE_PATH}/COPYING DESTINATION ${CURRENT_PACKAGES_DIR}/share/libmysql)
file(RENAME ${CURRENT_PACKAGES_DIR}/share/libmysql/COPYING ${CURRENT_PACKAGES_DIR}/share/libmysql/copyright)