APKBUILD examples:Php: Difference between revisions
m (added to Development Category) |
Dubiousjim (talk | contribs) (Category:PHP) |
||
| Line 10: | Line 10: | ||
</pre> | </pre> | ||
[[Category:Development]] | [[Category:Development]] [[Category:PHP]] | ||
Revision as of 07:45, 12 March 2012
Add phpize to the build() section.
build() {
cd "$_builddir"
phpize || return 1
./configure --prefix=/usr || return 1
make || return 1
}