summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Zammit <damien@zamaudio.com>2015-07-15 23:02:15 +1000
committerDamien Zammit <damien@zamaudio.com>2015-07-15 23:02:40 +1000
commit96e1176384befb172f72a2ff38e745d56a6648e4 (patch)
treeb70b5e21cd5efeb35166db515ce3aa0837d22695
parent3dd7e1a8598bd5c7db3d1c75797f8aa69c854b26 (diff)
Add readme, makefile and licence.
Signed-off-by: Damien Zammit <damien@zamaudio.com>
-rw-r--r--Makefile5
-rw-r--r--README.md13
-rw-r--r--ptunxor.c14
3 files changed, 32 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..86c64f6
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,5 @@
+all:
+ $(CC) ptunxor.c -o ptunxor
+
+clean:
+ rm ptunxor
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..4c233ee
--- /dev/null
+++ b/README.md
@@ -0,0 +1,13 @@
+ptf2ardour
+==========
+
+Idea is to make ardour open ptf sessions.
+
+First step, decrypt the .ptf files.
+
+Usage:
+
+ make
+ ./ptunxor file.ptf > file.out
+
+Still a work in progress.
diff --git a/ptunxor.c b/ptunxor.c
index bc41618..79a963d 100644
--- a/ptunxor.c
+++ b/ptunxor.c
@@ -1,3 +1,17 @@
+/*
+ * Copyright (C) 2015 Damien Zammit <damien@zamaudio.com>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 3 of
+ * the License, or any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ */
+
#include <stdio.h>
#include <inttypes.h>
#include <stdlib.h>