APKBUILD examples:Php: Difference between revisions
(Created page with "Coming soon...") |
(Change _builddir to builddir) |
||
(5 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
Add <tt>phpize</tt> to the build() section. | |||
<pre> | |||
build() { | |||
cd "$builddir" | |||
phpize || return 1 | |||
./configure --prefix=/usr || return 1 | |||
make || return 1 | |||
} | |||
</pre> | |||
[[Category:Development]] [[Category:PHP]] |
Latest revision as of 18:12, 31 August 2016
Add phpize to the build() section.
build() { cd "$builddir" phpize || return 1 ./configure --prefix=/usr || return 1 make || return 1 }