1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
Copyright (C) 2012-2016 Andrey Ponomarenko's ABI Laboratory
All rights reserved.
RELEASE INFORMATION
Project: Package Changes Analyzer (pkgdiff)
Version: 1.7.2
Date: 2016-03-18
This file explains how to install and setup environment
for the tool in your computer.
Content:
1. Requirements for Linux and FreeBSD
2. Requirements for Mac OS X
3. Configure and Install
4. Usage
1. REQUIREMENTS FOR LINUX AND FREEBSD
=====================================
1. Perl 5 (5.8 or newer)
2. GNU Diff
3. GNU Wdiff
4. GNU Awk
5. GNU Binutils (readelf)
1.1 Analysis of RPM packages
RPM (rpm, rpm2cpio)
1.2 Analysis of DEB packages
DPKG (dpkg, dpkg-deb)
1.3 Suggestions
1. ABI Compliance Checker (1.99.1 or newer)
2. ABI Dumper (0.97 or newer)
2. REQUIREMENTS FOR MAC OS X
============================
1. Perl 5 (5.8 or newer)
2. GNU Diff
3. GNU Wdiff
4. GNU Awk
5. Xcode (otool)
2.1 Suggestions
1. ABI Compliance Checker (1.99.1 or newer)
2. ABI Dumper (0.97 or newer)
3. CONFIGURE AND INSTALL
========================
This command will install the pkgdiff program into the
PREFIX/bin system directory and private modules into the PREFIX/share:
sudo make install prefix=PREFIX [/usr, /usr/local, ...]
3.1 Remove
sudo make uninstall prefix=PREFIX
4. USAGE
========
Compare two packages:
pkgdiff PKG1 PKG2
For advanced usage, see output of --help option
Enjoy!
|