-
Notifications
You must be signed in to change notification settings - Fork 0
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
0d5ad38
commit 29b237c
Showing
10 changed files
with
100 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/usr/bin/sh | ||
cp exampleapp.c CAppDevKit/ | ||
chmod a+x CAppDevKit/ | ||
cp CAppDevKitInfoLib/cappdevkitinfo.h CAppDevKit/CAppDevKitInfoLib/ | ||
chmod a+x CAppDevKit/CAppDevKitInfoLib/cappdevkitinfo.h | ||
cp CAppDevKitLib/appcustomvar.h CAppDevKit/CAppDevKitLib/ | ||
chmod a+x CAppDevKit/CAppDevKitLib/appcustomvar.h | ||
cp CAppDevKitLib/appvoid.h CAppDevKit/CAppDevKitLib/ | ||
chmod a+x CAppDevKit/CAppDevKitLib/appvoid.h |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/usr/bin/sh | ||
mkdir CAppDevKit | ||
mkdir CAppDevKit/CAppDevKitInfoLib | ||
mkdir CAppDevKit/CAppDevKitLib | ||
chmod a+x CAppDevKit |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#!/usr/bin/sh | ||
cp -r CAppDevKit /CAppDevKit |
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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
#!/usr/bin/python3 | ||
# Copyright© 2023 LinuxUsersLinuxMint | ||
# CAppDevKit Tüm Hakları GPL(Genel Kamu Lisansı) altında korunmaktadır. | ||
# CAppDevKit All Rights Reserved under the GPL(General Public License). | ||
# Bu Yazılımın Bir Kopyası GİTHUB da yayınlanmaktadır Görüntülemek için: https://github.com/LinuxUsersLinuxMint/LinuxUsersLinuxMint | ||
# A Copy of This Software is published on GITHUB To view: https://github.com/LinuxUsersLinuxMint/LinuxUsersLinuxMint | ||
|
||
import time, os | ||
|
||
yes_no=str(input('Are you sure you want to install CAppDevKit? (Y / N / Uninstall): ')) | ||
|
||
if yes_no=="N" or yes_no=="n" or yes_no=="No" or yes_no=="no" or yes_no=="NO": | ||
exit() | ||
elif yes_no=="Y" or yes_no=="y" or yes_no=="Yes" or yes_no=="yes" or yes_no=="YES": | ||
print("Installing CAppDevKit...") | ||
time.sleep(3) | ||
print("[CAppDevKit_Setup_Environment]: CAppDevKit installation step 1/3...") | ||
time.sleep(3) | ||
print("[CAppDevKit_Setup_Environment]: setup_create_dir.sh step 1/3... (Create Folder)") | ||
time.sleep(3) | ||
os.system("./setup_create_dir.sh") | ||
time.sleep(3) | ||
print("[CAppDevKit_Setup_Environment]: CAppDevKit installation step completed...") | ||
time.sleep(3) | ||
print("[CAppDevKit_Setup_Environment]: CAppDevKit installation step 2/3...") | ||
time.sleep(3) | ||
print("[CAppDevKit_Setup_Environment]: setup_copy_files.sh step 2/3... (Copy Files)") | ||
time.sleep(3) | ||
os.system("./setup_copy_files.sh") | ||
time.sleep(3) | ||
print("[CAppDevKit_Setup_Environment]: CAppDevKit installation step completed...") | ||
time.sleep(3) | ||
print("[CAppDevKit_Setup_Environment]: CAppDevKit installation step 3/3...") | ||
time.sleep(3) | ||
print("[CAppDevKit_Setup_Environment]: setup_folder_copy.sh step 3/3... (Copy Folder)") | ||
time.sleep(3) | ||
os.system("./setup_folder_copy.sh") | ||
time.sleep(3) | ||
print("[CAppDevKit_Setup_Environment]: CAppDevKit installation step completed...") | ||
exit() | ||
elif yes_no=="Uninstall" or yes_no=="uninstall" or yes_no=="U" or yes_no=="u": | ||
print("Uninstall CAppDevKit...") | ||
time.sleep(3) | ||
os.system("./uninstall_cappdevkit.sh") | ||
time.sleep(2) | ||
exit() | ||
else: | ||
print("Invalid CAppSE (CAppDevKit Setup Environment) Argument...") |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#!/usr/bin/sh | ||
rm -rf /CappDevKit |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
@echo off | ||
@title=CAppDevKit Setup Environment | ||
@color 1 | ||
:m | ||
cls | ||
echo Press enter to start the installation... | ||
pause | ||
echo CAppDevKit will be downloaded. | ||
copy exampleapp.c C:\CAppDevKit | ||
copy CAppDevKitInfoLib\cappdevkitinfo.h C:\CAppDevKit\CAppDevKitInfoLib | ||
copy CAppDevKitLib\appcustomvar.h C:\CAppDevKit\CAppDevKitLib | ||
copy CAppDevKitLib\appvoid.h C:\CAppDevKit\CAppDevKitLib | ||
pause | ||
exit |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@echo off | ||
@title=CAppDevKit Setup Environment | ||
@color 1 | ||
:m | ||
cls | ||
echo Press enter to start the uninstallation... | ||
pause | ||
del C:\CAppDevKit | ||
pause | ||
exit |