Skip to content

Commit 11f2f0b

Browse files
committed
Remove hardcoded libpng package and add module dependency
1 parent f8caadb commit 11f2f0b

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Requires the following boxen modules:
1111
* `libtool`
1212
* `pkgconfig`
1313
* `pcre`
14+
* `libpng`
1415

1516
The following boxen modules are required if optional PHP extensions are used:
1617

manifests/init.pp

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
include libtool
1111
include pkgconfig
1212
include pcre
13+
include libpng
1314

1415
# Get rid of any pre-installed packages
1516
package { ['phpenv', 'php-build']: ensure => absent; }
@@ -61,7 +62,6 @@
6162
'gmp',
6263
'icu4c',
6364
'jpeg',
64-
'libpng',
6565
'libevent',
6666
'mcrypt',
6767
]:

spec/fixtures/Puppetfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ mod 'wget', '1.0.0', :github_tarball => 'boxen/puppet-wget'
55
mod 'autoconf', '1.0.0', :github_tarball => 'boxen/puppet-autoconf'
66
mod 'libtool', '1.0.0', :github_tarball => 'boxen/puppet-libtool'
77
mod 'pkgconfig', '1.0.0', :github_tarball => 'boxen/puppet-pkgconfig'
8-
mod 'pcre', '1.0.0', :github_tarball => 'boxen/puppet-pcre'
8+
mod 'pcre', '1.0.0', :github_tarball => 'boxen/puppet-pcre'
9+
mod 'libpng', '1.0.0', :github_tarball => 'boxen/puppet-libpng'

0 commit comments

Comments
 (0)