#!/bin/bash # realpath # # Douglas Thrift # # $Id$ name=realpath version=1.10 revision=0 categories=(base sysutils) description='Return the canonicalized absolute pathname' url='http://packages.debian.org/testing/utils/realpath.html' depends=('base/glibc') sources=(`site_debian`) function build() { cd $source/$sourcedir || return $? gmake VERSION=$version || return $? install -dv $package/{bin,usr/share/man/man1} install -v realpath $package/bin install -v -m 0644 man/realpath.1 $package/usr/share/man/man1 }