realpath: replaced in coreutils, dropped

This commit is contained in:
Thomas Penteker 2014-09-18 11:51:25 +02:00
parent f18dd996e8
commit bcb3c69844
3 changed files with 0 additions and 29 deletions

View File

@ -1,6 +0,0 @@
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

View File

@ -1 +0,0 @@
0c7207efe854b0347f49fad3d709cc3b realpath_1.19.tar.gz

View File

@ -1,22 +0,0 @@
# Description: return the canonicalized absolute pathname
# URL: http://packages.debian.org/sid/realpath
# Maintainer: Thomas Penteker, tek at serverop dot de
# Packager: Simon Glossner, viper at hometux dot de
name=realpath
version=1.19
release=1
source=(http://ftp.debian.org/debian/pool/main/r/${name}/${name}_${version}.tar.gz)
build() {
cd $name-$version/src
sed -i -e 's/setlocale.*//g' -e 's/bindtextdomain.*//g' -e 's/textdomain.*//g' realpath.c
gcc -DVERSION="${version}" -o realpath realpath.c
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
}