Skip to content
This repository has been archived by the owner on Sep 7, 2024. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'origin/arch-ignsdk'
Browse files Browse the repository at this point in the history
  • Loading branch information
ubunteroz committed Dec 27, 2013
2 parents 5186895 + 62076b4 commit c31a8ed
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 4 deletions.
19 changes: 17 additions & 2 deletions platform/ARCH/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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
Expand Down
5 changes: 3 additions & 2 deletions platform/ARCH/arch-dev-tools/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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/
Expand Down
1 change: 1 addition & 0 deletions platform/ARCH/arch-dev-tools/arch-dev-tools.install
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/
}
28 changes: 28 additions & 0 deletions platform/ARCH/ignsdk.install
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"
}

0 comments on commit c31a8ed

Please sign in to comment.