mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-13 06:23:45 -04:00
12 lines
254 B
Bash
Executable File
12 lines
254 B
Bash
Executable File
#! /bin/sh
|
|
|
|
version=$(awk '/^#define[ \t]+NETPGP_VERIFY_H_/ { print $3 }' verify.h)
|
|
name=netpgpverify-${version}
|
|
|
|
(cd .. &&
|
|
mv files ${name} &&
|
|
tar --exclude CVS -cvzf $HOME/${name}.tar.gz ${name} &&
|
|
ls -al $HOME/${name}.tar.gz &&
|
|
mv ${name} files)
|
|
|