aboutsummaryrefslogtreecommitdiff
path: root/xpkg
diff options
context:
space:
mode:
Diffstat (limited to 'xpkg')
-rwxr-xr-xxpkg26
1 files changed, 0 insertions, 26 deletions
diff --git a/xpkg b/xpkg
deleted file mode 100755
index c63962b..0000000
--- a/xpkg
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/sh -e
-
-# xpkg -- fetch and extract pkgsrc archive
-
-case "$PWD" in
-/usr/pkgsrc/*/*) ;;
-*) echo "${0##*/}: not in package directory" 1>&2; exit 1 ;;
-esac
-
-make fetch
-f=/usr/pkgsrc/distfiles/$(sed -n '/.*(\(.*\)).*/{s//\1/;p;q}' distinfo)
-d=$(tar -tf "$f" | head -1)
-
-opt=
-if [ -e "$d" ]; then
- printf "%s: $d already exists; overwrite? " "${0##*/}"
- read ans
- case $ans in
- y*) opt=-U ;;
- *) exit 1 ;;
- esac
-fi
-
-echo extracting archive... 1>&2
-tar -x $opt -f "$f"
-echo "$d"