APKBUILD examples:Php: Difference between revisions

From Alpine Linux
(Created page with "Coming soon...")
 
No edit summary
Line 1: Line 1:
Coming soon...
Add <tt>phpize</tt> to the build() section.  
 
<pre>
build() {
cd "$_builddir"
phpize || return 1
./configure --prefix=/usr || return 1
make || return 1
}
</pre>

Revision as of 07:32, 24 June 2011

Add phpize to the build() section.

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