Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 484 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 484 Bytes

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.