File: setup.pl

package info (click to toggle)
libgtk3-perl 0.018-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 352 kB
  • ctags: 93
  • sloc: perl: 3,656; makefile: 11
file content (13 lines) | stat: -rw-r--r-- 249 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
use Test::More;
use Gtk3;

if (!Gtk3::init_check ()) {
  plan skip_all => 'Gtk3::init_check failed';
}

sub check_gi_version {
  my ($x, $y, $z) = @_;
  return !system ('pkg-config', "--atleast-version=$x.$y.$z", 'gobject-introspection-1.0');
}

1;