diff options
author | frueauf <frueauf> | 1999-01-14 14:11:00 +0000 |
---|---|---|
committer | frueauf <frueauf> | 1999-01-14 14:11:00 +0000 |
commit | f77e5ff281c01639876e164c99e275de64acf17b (patch) | |
tree | 4a9c9e9d063f82f4021c9459e727ea6a0c80b5d1 /lang/f2c | |
parent | b562858fabba95e5fa2c7f832df13c31b220ec33 (diff) | |
download | pkgsrc-f77e5ff281c01639876e164c99e275de64acf17b.tar.gz |
This script is no longer needed, all done in Makefile now.
Diffstat (limited to 'lang/f2c')
-rwxr-xr-x | lang/f2c/scripts/post-extract | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/lang/f2c/scripts/post-extract b/lang/f2c/scripts/post-extract deleted file mode 100755 index 84f4a663bfc..00000000000 --- a/lang/f2c/scripts/post-extract +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh -# -# $NetBSD: post-extract,v 1.3 1998/08/25 08:54:08 agc Exp $ -# - -echo "Running post-extract" - -cd $WRKSRC - -# uncompress the top level files -rm index.html -gunzip *.gz - -# extract the shell archives for libF77 and libI77 -sh libf77 -sh libi77 - -# copy the f2c.h header needed by the the libraries -cp f2c.h libF77/f2c.h -cp f2c.h libI77/f2c.h - -# uncompress the main f2c source -cd src -rm index.html -mv .depend depend.orig -gunzip *.gz - -exit 0 |