APKBUILD examples:Php

From Alpine Linux
Revision as of 12:29, 7 March 2016 by Fab (talk | contribs) (Reverted edits by RuthHughes (talk) to last revision by Dubiousjim)

Add phpize to the build() section.

build() {
	cd "$_builddir"
	phpize || return 1
	./configure --prefix=/usr || return 1
	make || return 1
}