This repository has been archived by the owner on Sep 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/arch-ignsdk'
- Loading branch information
Showing
4 changed files
with
49 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
#PKGBUILD | ||
#Sofyan Saputra/Iank ([email protected]) | ||
|
||
pkgname=ign-sdk | ||
pkgname=ignsdk | ||
pkgver=1.1.2 | ||
pkgrel=112913 | ||
pkgdesc="IGN Software Development Kit" | ||
|
@@ -16,7 +16,22 @@ source=('https://github.com/anak10thn/ignsdk-qt/archive/v1.1.2.tar.gz') | |
md5sums=('SKIP') | ||
_gourl=github.com/anak10thn/ignsdk-qt | ||
install='ignsdk.install' | ||
|
||
|
||
prepare(){ | ||
echo -e "press [y] if you want to install the package ign-sdk-dev-tools package download now \n" | ||
echo -e "press any key to next step" | ||
read -p 'choose your select : ' select | ||
if [ $select == 'y' ] | ||
then | ||
mkdir /tmp/ignsdk-dev/ | ||
wget -P /tmp/ignsdk-dev/ http://arch.ignsdk.web.id/archlinux/i686/arch-dev-tools/PKGBUILD | ||
wget -P /tmp/ignsdk-dev/ http://arch.ignsdk.web.id/archlinux/i686/arch-dev-tools/arch-dev-tools.install | ||
echo -e "Download Success\n" | ||
echo -e "Next Process.." | ||
else | ||
echo -e "process completed without equipment ignsdk-dev-tools\n" | ||
fi | ||
} | ||
build() { | ||
cd ignsdk-qt-1.1.2 | ||
qmake | ||
|
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 @@ | |
#PKGBUILD | ||
#Sofyan Saputra/Iank ([email protected]) | ||
|
||
pkgname=ign-sdk | ||
pkgname=ignsdk-dev-tools | ||
pkgver=1.1.2 | ||
pkgrel=112913 | ||
pkgdesc="IGN Software Development Kit Developer Tools" | ||
|
@@ -12,12 +12,13 @@ arch=('x86_64' 'i686') | |
license=('BSD') | ||
depends=('ignsdk') | ||
options=('!strip' '!emptydirs') | ||
source=('http://arch.ignsdk.web.id/archlinux/i686/arch-dev.tar.gz') | ||
md5sums=('SKIP') | ||
_gourl=github.com/anak10thn/ignsdk-qt | ||
install='arch-dev-tools.install' | ||
|
||
package(){ | ||
cd ../../src/ignsdk-qt-1.1.2 | ||
cd arch-dev | ||
mkdir -p $pkgdir/usr/bin | ||
mkdir -p $pkgdir/usr/share/ign-sdk/bin/ | ||
mkdir -p $pkgdir/usr/share/man/man1/ | ||
|
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
post_install(){ | ||
man -a -u ignsdk-app-builder | ||
man -a -u ignsdk-app-creator | ||
rm -rf /tmp/ignsdk-dev/ | ||
} |
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 |
---|---|---|
@@ -1,3 +1,31 @@ | ||
post_install(){ | ||
echo -e "if you select the installation ign-sdk-dev-tools do the packaging immediately after the process is completed\n" | ||
echo -e "The Packaging process will use root mode if you Agree Press Y\n" | ||
echo -e "choose your select [y] to build :" | ||
read -p '' select | ||
if [ $select == 'y' ] | ||
then | ||
|
||
cd /tmp/ignsdk-dev/ | ||
makepkg -sf --asroot | ||
echo -e "Build Package Sucess\n" | ||
echo -e "making package is over see /tmp/ignsdk-dev/" | ||
echo -e "installing package when istalling this software" | ||
echo -e "go command :\n" | ||
echo -e "sudo pacman -U /tmp/ignsdk-dev/ignsdk-dev-tools-1.1.2-112913-i686.pkg.tar.xz\n" | ||
|
||
else | ||
rm -rf /tmp/ignsdk-dev/ | ||
echo -e "Next to make package-dev-tools ignsdk please download here https://aur.archlinux.org/packages/ig/ignsdk-dev-tools/ignsdk-dev-tools.tar.gz\n" | ||
fi | ||
|
||
|
||
echo -e "see the following users guides" | ||
man -u -a ignsdk | ||
echo -e "Thank You For Installations" | ||
} | ||
|
||
post_remove(){ | ||
echo -e "thanks for your installations\n" | ||
echo -e "good bye" | ||
} |