APKBUILD examples:Php

From Alpine Linux
Revision as of 04:56, 12 March 2012 by Ncopa (talk | contribs) (added to Development Category)

Add phpize to the build() section.

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