-
-
Notifications
You must be signed in to change notification settings - Fork 620
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ac9d107
commit 35357e4
Showing
147 changed files
with
271 additions
and
257 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
# | ||
# Please see COPYING for details | ||
# | ||
# Copyright (c) 2005-2021 Brenden Matthews, et. al. (see AUTHORS) All rights | ||
# Copyright (c) 2005-2024 Brenden Matthews, et. al. (see AUTHORS) All rights | ||
# reserved. | ||
# | ||
# This program is free software: you can redistribute it and/or modify it under | ||
|
@@ -23,7 +23,7 @@ set(CPACK_DEBIAN_PACKAGE_DEPENDS "libc6 (>=2.10-1), libgcc1 (>= 1:4.4.0)") | |
set(CPACK_PACKAGE_CONTACT "[email protected]") | ||
set(CPACK_DEBIAN_PACKAGE_MAINTAINER "Brenden Matthews") | ||
set(CPACK_PACKAGE_FILE_NAME | ||
"${PROJECT_NAME}-${VERSION}-${CMAKE_SYSTEM_NAME}-${CPU_ARCH}") | ||
"${PROJECT_NAME}-${VERSION}-${CMAKE_SYSTEM_NAME}-${CPU_ARCH}") | ||
|
||
set(CPACK_PACKAGE_INSTALL_DIRECTORY ${PROJECT_NAME}) | ||
|
||
|
@@ -44,20 +44,24 @@ endif(CPACK_GENERATOR MATCHES "NSIS") | |
set(CPACK_SOURCE_PACKAGE_FILE_NAME "${PROJECT_NAME}-${VERSION}-src") | ||
set(CPACK_SOURCE_GENERATOR "TBZ2") | ||
execute_process(COMMAND ${APP_UNAME} | ||
COMMAND ${APP_AWK} "{print $1}" | ||
RESULT_VARIABLE RETVAL | ||
OUTPUT_VARIABLE CPU_ARCH | ||
OUTPUT_STRIP_TRAILING_WHITESPACE) | ||
COMMAND ${APP_AWK} "{print $1}" | ||
RESULT_VARIABLE RETVAL | ||
OUTPUT_VARIABLE CPU_ARCH | ||
OUTPUT_STRIP_TRAILING_WHITESPACE) | ||
|
||
set(CPACK_SOURCE_IGNORE_FILES | ||
# Exclude backup files generated by text editors. | ||
"~$" | ||
# Git dir/files. | ||
"\\\\.git.*$" | ||
# vim swap files | ||
"\\\\..*\\\\.swp$" | ||
# Build dir. | ||
"build.*$") | ||
|
||
# Exclude backup files generated by text editors. | ||
"~$" | ||
|
||
# Git dir/files. | ||
"\\\\.git.*$" | ||
|
||
# vim swap files | ||
"\\\\..*\\\\.swp$" | ||
|
||
# Build dir. | ||
"build.*$") | ||
|
||
# Enable CPack | ||
include(CPack) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.