-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
33 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
package Devel::AssertOS::Linux::Arch; | ||
|
||
use Devel::CheckOS; | ||
use strict; | ||
use warnings; | ||
|
||
use Devel::CheckOS::Helpers::LinuxOSrelease 'distributor_id'; | ||
|
||
no warnings 'redefine'; | ||
|
||
our $VERSION = '1.0'; | ||
|
||
sub os_is { | ||
my $id = distributor_id; | ||
Devel::CheckOS::os_is('Linux') && defined($id) && $id eq 'arch'; | ||
} | ||
|
||
sub expn { "The operating system is some version of Arch Linux" } | ||
|
||
Devel::CheckOS::die_unsupported() unless ( os_is() ); | ||
|
||
=head1 COPYRIGHT and LICENCE | ||
Copyright 2024 David Cantrell | ||
This software is free-as-in-speech software, and may be used, distributed, and modified under the terms of either the GNU General Public Licence version 2 or the Artistic Licence. It's up to you which one you use. The full text of the licences can be found in the files GPL2.txt and ARTISTIC.txt, respectively. | ||
=cut | ||
|
||
1; | ||
|