APKBUILD examples:Php

From Alpine Linux
Revision as of 18:12, 31 August 2016 by Jirutka (talk | contribs) (Change _builddir to builddir)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Add phpize to the build() section.

build() {
	cd "$builddir"

	phpize || return 1
	./configure --prefix=/usr || return 1
	make || return 1
}