> Date: Wed, 30 Jan 2013 18:14:45 +0700
> Subject: Re: helping with porting Cinnamon to Crux.
> From: benisty.e@gmail.com
> To: rwobben@hotmail.com
> CC: crux@lists.crux.nu
>
> Hi Roelof,
>
> On Wed, Jan 30, 2013 at 1:10 AM, Roelof Wobben <rwobben@hotmail.com> wrote:
> > I made a Pkgfile with this contents.
> >
> > # Description : muffin the window manager of the Cinnamon Desktop
> > # Url : http://cinnamon.linuxmint.com/
> > # Maintainer : Roelof Wobben, rwobben at hotmail dot nl
> > # Depends on : intltool
> >
> > name=muffin
> > version=1.1.12
> > release=1
> > source=(https://github.com/linuxmint/$name/archive/$version.tar.gz
> >
> > build() {
> > cd $name-version
>
> should be: cd $name-$version
>
> > ./configure --prefix=/usr
> > make
> > make DESTDIR=$pkg install
>
> should be: make DESTDIR=$PKG install
>
> > }
> >
> > So I thought that the depencies are also build when I do pkgmk -d
> > But I still see a message that the build-script cannot find intltool.
> >
> > How to solve this one.
>
> pkgutils does not handle dependencies, you need prt-get for this task.
> handbook, prt-get and prt-get.conf man pages are a good place to
> start.
>
> good luck and welcome to CRUX.
 
Thanks for the remarks.
So if I understand you right, I have to install all the depencies manual so I can build the package.
 
As far as I know prt-get is only for installing packages not for building packages.
 
Roelof