Source: libclass-data-inheritable-perl
Section: perl
Priority: optional
Maintainer: OpenKylin Developers <packaging@lists.openkylin.top>
Build-Depends: debhelper (>=11~)
Build-Depends-Indep: libtest-pod-perl,
                     libtest-pod-coverage-perl,
                     perl
Testsuite: autopkgtest-pkg-perl
Standards-Version: 4.2.0
Vcs-Browser: https://gitee.com/openkylin/libclass-data-inheritable-perl
Vcs-Git: https://gitee.com/openkylin/libclass-data-inheritable-perl.git
Homepage: https://metacpan.org/release/Class-Data-Inheritable

Package: libclass-data-inheritable-perl
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends}
Description: Perl module to create accessors to class data
 Class::Data::Inheritable is for creating accessors/mutators to class
 data.  That is, if you want to store something about your class as a
 whole (instead of about a single object).  This data is then inherited
 by your subclasses and can be overridden.
 .
 For example:
 .
 Pere::Ubu->mk_classdata('Suitcase');
 .
 will generate the method Suitcase() in the class Pere::Ubu.
 .
 This new method can be used to get and set a piece of class data.
 .
 Pere::Ubu->Suitcase('Red');
 $suitcase = Pere::Ubu->Suitcase;
