netsurf_buildsystem: Force installing to data/

The install path is hardcoded in the makefile to $prefix/shared/.

Also remove the make invocation, it's a no-op anyway.
This commit is contained in:
François Revol
2013-12-09 18:04:16 +01:00
parent 13cf07ad29
commit 324d7d07af

View File

@@ -3,7 +3,6 @@ DESCRIPTION="NetSurf build framework for compiling some of their libraries"
HOMEPAGE="http://www.netsurf-browser.org/"
SRC_URI="git://git.netsurf-browser.org/buildsystem.git"
REVISION="1"
STATUS_HAIKU="stable"
LICENSE="MIT"
COPYRIGHT="2009 - 2013 The NetSurf Browser project"
@@ -32,11 +31,13 @@ SOURCE_DIR="$portVersionedName"
BUILD()
{
make
# no-op
# make
:
}
INSTALL()
{
make install PREFIX=$prefix
make install PREFIX=$prefix BASE=$prefix/data/netsurf-buildsystem
}