APKBUILD examples:Php: Difference between revisions
No edit summary |
m (added to Development Category) |
||
| Line 9: | Line 9: | ||
} | } | ||
</pre> | </pre> | ||
[[Category:Development]] | |||
Revision as of 04:56, 12 March 2012
Add phpize to the build() section.
build() {
cd "$_builddir"
phpize || return 1
./configure --prefix=/usr || return 1
make || return 1
}