You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
311 B
20 lines
311 B
package ksb::Updater::KDEProject; |
|
|
|
# An update class for KDE Project modules (i.e. those that use "repository |
|
# kde-projects" in the configuration file). |
|
|
|
use strict; |
|
use warnings; |
|
use v5.10; |
|
|
|
our $VERSION = '0.10'; |
|
|
|
use ksb::Updater::Git; |
|
our @ISA = qw(ksb::Updater::Git); |
|
|
|
sub name |
|
{ |
|
return 'proj'; |
|
} |
|
|
|
1;
|
|
|