about summary refs log tree commit diff
path: root/pkgs/development/libraries/ilbc/extract-cfile.awk
diff options
context:
space:
mode:
authorGraham Christensen <graham@grahamc.com>2016-03-14 15:20:18 -0500
committerVladimír Čunát <vcunat@gmail.com>2016-03-14 21:41:41 +0100
commit2aae2af8452a4ba45721cfb32016313046826625 (patch)
tree2c6624df750703e19729011bf7ec9af94d59458c /pkgs/development/libraries/ilbc/extract-cfile.awk
parentc310cb9e469a156c8de2ca3a89c470f519f5c332 (diff)
ilbc: extract-cfile.awk has fallen off the internet
Close #13923.
Diffstat (limited to 'pkgs/development/libraries/ilbc/extract-cfile.awk')
-rw-r--r--pkgs/development/libraries/ilbc/extract-cfile.awk24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/libraries/ilbc/extract-cfile.awk b/pkgs/development/libraries/ilbc/extract-cfile.awk
new file mode 100644
index 0000000000000..e4b07bc089636
--- /dev/null
+++ b/pkgs/development/libraries/ilbc/extract-cfile.awk
@@ -0,0 +1,24 @@
+BEGIN { srcname = "nothing"; }
+{ if (/^A\.[0-9][0-9]*\.* *[a-zA-Z][a-zA-Z_0-9]*\.[ch]/) {
+    if (srcname != "nothing")
+      close(srcname);
+    srcname = $2;
+    printf("creating source file %s\n", srcname);
+  }else if (srcname != "nothing") {
+    if (/Andersen,* *et* *al\./) 
+      printf("skipping %s\n", $0);
+    else if (//)
+      printf("skipping2 %s\n", $0);
+    else if (/Internet Low Bit Rate Codec *December 2004/)
+      printf("skipping3 %s\n", $0);
+    else if (/Authors' *Addresses/){
+      close(srcname);
+      exit;}
+    else
+      print $0 >> srcname;
+  }
+}
+END {
+  printf("ending file %s\n", srcname);
+  close(srcname);
+}