24 Dec
2008
24 Dec
'08
4:32 p.m.
On Wed, Dec 24, 2008 at 1:35 AM, Allan McRae <allan@archlinux.org> wrote:
I suppose... but in the meantime, here is a really bad PKGBUILD that will pull it from git: http://dev.archlinux.org/~allan/PKGBUILD
Thanks, got the PKGBUILD working on Mac OS X with some small modifications. Found a bug with the -p <buildscript> flag, if you set this option it will get overriden in makepkg when sourcing the config file, on line 1443: # Source the config file; fail if it is not found if [ -r "$MAKEPKG_CONF" ]; then source "$MAKEPKG_CONF" Another small bug, on line 1500, if the BUILDSCRIPT filename contains whitespace it will fail: if [ -z $BUILDSCRIPT ]; then should be quoted like this: if [ -z "$BUILDSCRIPT" ]; then