johnsonjh / graft

graft: a package management utility by Peter R. Samuel <peter.r.samuel@gmail.com>. Mirrored from http://peters.gormand.com.au/Home/tools/graft

Home Page:http://peters.gormand.com.au/Home/tools/graft

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Graft

A package management utility


DeepSourceA DeepSourceR


Introduction

Graft provides a mechanism for managing multiple packages under a single directory hierarchy.

It was inspired by both Depot (Carnegie Mellon University) and Stow (Bob Glickstein).

Installation

Module Dependencies

Graft has been written to ensure it uses Perl modules that are considered part of the core Perl distribution. However, it may be possible that you're using a home-grown installation of Perl, or some distribution that doesn't have the same Perl modules as the author's development environment.

If this is the case, you'll see compile failures for the following modules, if they are unavailable:

  • File::Basename
  • Getopt::Long

You will not be able to install graft until these modules are available.

You may also see run-time failures when using graft with .graft-config files, if the following modules are unavailable:

  • Compress::Raw::Zlib (used in install and delete modes)
  • File::Copy (only used in install mode)

If you don't have these modules and you do not intend to use .graft-config files, then you can continue to use graft without issue.

Prepare

  • make -f Makefile.dist

This generates a working copy of the Makefile for you to edit to suit your environment.

Edit Makefile appropriately.

You'll probably want to modify the following variables:

  • PACKAGEDIR = /usr/local/pkgs
  • TARGETDIR = /usr/local

The rest of the parameters are sensible defaults, but please change them to suit your needs. See the comments in the Makefile for directions or see the more detailed installation documentation in doc/graft.html.

Build

  • make

There should be no errors.

Install

  • make install

This installs the graft executable and its documentation into the $PACKAGEDIR/graft-2.16 directory which can then be grafted into your $TARGETDIR directory:

  • /usr/local/pkgs/graft-2.16/bin/graft graft-2.16

Or if you would prefer to create binary RPM or DEB files you can choose one of the following commands:

  • make rpm
  • make deb

Note that the installation directories for the RPM and DEB packages are hard-coded to:

  • /usr/bin
  • /usr/share/man
  • /usr/share/doc

Then use the appropriate rpm -[i|u] ... or dpkg install ... command to install the package onto your system(s).

  • Note that the RPM package build was tested on a Debian system, so its success on a true RPM based distro has not been verified.

Documentation

See the man page and the files ./doc/graft.{html,pdf,ps,txt} for expanded details on installation and usage.

Author

Thanks

  • Gordon Rowell
  • Charles Butcher
  • Charlie Brady
  • Robert Maldon
  • Matias Fonzo

Mirrors

Homepage

About

graft: a package management utility by Peter R. Samuel <peter.r.samuel@gmail.com>. Mirrored from http://peters.gormand.com.au/Home/tools/graft

http://peters.gormand.com.au/Home/tools/graft

License:GNU General Public License v2.0


Languages

Language:Perl 73.7%Language:Roff 24.2%Language:Shell 2.1%