/dpkg.dart

Primary LanguageDartMozilla Public License 2.0MPL-2.0

Pub Package

Provides classes to extract Debian packages.

import 'package:dpkg/dpkg.dart';

void main(List<String> args) async {
  var f = DebBinaryFile(args.first);
  var control = await f.getControl();
  print('${control.package} ${control.version}');
  await f.close();
}

Contributing to dpkg.dart

We welcome contributions! See the contribution guide for more details.