[Gambas-user] Re: Cd to Directory
Steve Starr
comtux at ...626...
Tue Sep 13 04:58:32 CEST 2005
This worked.
SHELL "cd build && ./wolfpkg" FOR READ
What i was trying to do was use the
IF Dialog.OpenFile() THEN RETURN
TextBox1.Text = Dialog.Path
to load a compressed file then load wolfpkg in to textarea
####this is the wolfpkg script
#!/bin/bash
# Maintainer: Steve Starr <comtux at ...626...>
name=sqlite
version=3.2.5
release=1
pkg=/opt/build
rm -r $pkg
mkdir $pkg
wget $source
tar -xvzf $name-$version.tar.gz
cd $name-$version
./configure --prefix=/usr
make
make prefix=$pkg/usr install
the compressed package and wolfpkg script are then copyed to the build dir
and the wolfpkg script was ran but when i was adding a
source=(http://www.comtuxaps.com/packages/source/$name/$name-$version.tar.gz)
into the wolfpkg script the compressed file was being downloaded to my
project dir instead of the build dir were i excuted the wolfpkg script
and i would end up building the package in the project dir instead of
the build dir.
I am working on a package builder for my personal linux distro.
Thanks rob for the solution :)
On 9/13/05, Rob Kudla <sourceforge-raindog2 at ...94...> wrote:
> On Mon September 12 2005 19:14, Pablo Vera wrote:
> > You don't need to "cd", you simply run it like this:
> > SHELL "/root/Projects/PkgManager/build/wolfpkg"
> > or
> > SHELL "/root/Projects/PkgManager/build/wolfpkg" FOR READ
> > depending on what the "wolfpkg" executable does.
>
> Well, if the "wolfpkg" executable reads files from relative pathnames,
> it might very well be need to run from that directory. To this day I
> can't figure out how to run Azureus without CD'ing to its directory,
> for example.
>
> Rob
>
>
>
> -------------------------------------------------------
> SF.Net email is Sponsored by the Better Software Conference & EXPO
> September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
> Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
> Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
> _______________________________________________
> Gambas-user mailing list
> Gambas-user at lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user
>
More information about the User
mailing list