Hello,
 
I thought I was successfull in building Muffin.
In the work directory I did these steps.
 
aclocal
libtoolize --force
autoheader
autoconf
./configure --prefix=/usr
make
 
So I change the build section of Pkgfile to this:
 
build () {
    cd $name-$version
    aclocal
    libtoolize --force
    autoheader
    autoconf
    ./configure --prefix=/usr
    make
    make DESTDIR=$PKG install
}
 
But this one fails with missing a seperator on the Makefile.
 
Can someone explain to me why this happens and how to solve this ?
 
Roelof