diff options
author | Simon Gloßner <viper@hometux.de> | 2006-10-22 15:19:50 +0200 |
---|---|---|
committer | Simon Gloßner <viper@hometux.de> | 2006-10-22 15:19:50 +0200 |
commit | 6ed9bff997fe2492d7401543a382f38f7d0fac80 (patch) | |
tree | 5417ed91804fbd7a6c78a8a12402ced98428842e /realpath | |
parent | fdf4810dcfebda8ba792759cdf57782e5f982be4 (diff) | |
download | contrib-6ed9bff997fe2492d7401543a382f38f7d0fac80.tar.gz contrib-6ed9bff997fe2492d7401543a382f38f7d0fac80.tar.xz |
Initial import of my contrib ports.
Diffstat (limited to 'realpath')
-rw-r--r-- | realpath/.footprint | 6 | ||||
-rw-r--r-- | realpath/.md5sum | 1 | ||||
-rw-r--r-- | realpath/Pkgfile | 20 |
3 files changed, 27 insertions, 0 deletions
diff --git a/realpath/.footprint b/realpath/.footprint new file mode 100644 index 000000000..0e1e0c029 --- /dev/null +++ b/realpath/.footprint @@ -0,0 +1,6 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/realpath +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/realpath.1.gz diff --git a/realpath/.md5sum b/realpath/.md5sum new file mode 100644 index 000000000..105adc133 --- /dev/null +++ b/realpath/.md5sum @@ -0,0 +1 @@ +1f2b2bceaacadf79162a9cbb5956c3b6 realpath_1.10.tar.gz diff --git a/realpath/Pkgfile b/realpath/Pkgfile new file mode 100644 index 000000000..5ec8fa777 --- /dev/null +++ b/realpath/Pkgfile @@ -0,0 +1,20 @@ +# Description: return the canonicalized absolute pathname +# URL: http://packages.debian.org/unstable/utils/realpath.html +# Maintainer: Simon Gloßner, viper at hometux dot de + +name=realpath +version=1.10 +release=1 +source=(http://ftp.debian.org/debian/pool/main/r/${name}/${name}_${version}.tar.gz) + +build() { + cd $name-$version + + make VERSION=$version realpath + + mkdir -p $PKG/usr/bin + mkdir -p $PKG/usr/man/man1 + + install -m 755 realpath $PKG/usr/bin/realpath + install -m 644 man/realpath.1 $PKG/usr/man/man1 +} |