diff options
author | Francois Perrad <fperrad@gmail.com> | 2012-10-19 03:13:51 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-11-03 12:00:38 +0100 |
commit | fa3afe2d81874b315759c1fb3b705ed54b15ce2c (patch) | |
tree | 4a271bc522497504ddda56043a7c1b45c62720ea /package/perl/Config.in | |
parent | 1ff20d33e3f213ea1efc2e6939516b1ea43393c4 (diff) | |
download | buildroot-novena-fa3afe2d81874b315759c1fb3b705ed54b15ce2c.tar.gz buildroot-novena-fa3afe2d81874b315759c1fb3b705ed54b15ce2c.zip |
perl: add option "custom install"
allows same behaviour (and footprint) as microperl
Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/perl/Config.in')
-rw-r--r-- | package/perl/Config.in | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/package/perl/Config.in b/package/perl/Config.in index 98b41da4f..0642debf3 100644 --- a/package/perl/Config.in +++ b/package/perl/Config.in @@ -16,6 +16,22 @@ config BR2_PACKAGE_PERL if BR2_PACKAGE_PERL +config BR2_PACKAGE_PERL_CUSTOM_INSTALL + bool "custom install" + help + Don't use the full install target + Install only a selection of modules (like microperl). + +config BR2_PACKAGE_PERL_MODULES + string "additional modules" + depends on BR2_PACKAGE_PERL_CUSTOM_INSTALL + help + List of space-separated perl modules to copy to the rootfs. + + Examples: constant.pm Getopt/Std.pm Time/Local.pm + + Module dependencies are not automatic so check your needs. + config BR2_PACKAGE_PERL_DB_FILE bool "DB_File" select BR2_PACKAGE_BERKELEYDB |