summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2012-01-10 11:44:00 +0000
committerRichard Maw <richard.maw@codethink.co.uk>2012-01-10 11:44:00 +0000
commit4683f621d4f667ec055ed09bc918b095febcbd78 (patch)
treeb83274f3f1606f2985188e517b286899ed42014e
parent86e4b68a26e8bfbacc43501db36f5740c4e94019 (diff)
downloadbzip2-4683f621d4f667ec055ed09bc918b095febcbd78.tar.gz
Add morphs
bz2.morph is the program itself, libbz2.morph is a shared library
-rw-r--r--bz2.morph10
-rw-r--r--libbz2.morph10
2 files changed, 20 insertions, 0 deletions
diff --git a/bz2.morph b/bz2.morph
new file mode 100644
index 0000000..dd9f37a
--- /dev/null
+++ b/bz2.morph
@@ -0,0 +1,10 @@
+{
+ "name": "bz2",
+ "kind": "chunk",
+ "build-commands": [
+ "make"
+ ],
+ "install-commands": [
+ "make PREFIX=\"$DESTDIR/usr\" install"
+ ]
+}
diff --git a/libbz2.morph b/libbz2.morph
new file mode 100644
index 0000000..cd8743a
--- /dev/null
+++ b/libbz2.morph
@@ -0,0 +1,10 @@
+{
+ "name": "libbz2",
+ "kind": "chunk",
+ "build-commands": [
+ "make -f Makefile-libbz2_so"
+ ],
+ "install-commands": [
+ "install libbz2.so.1.0 libbz2.so.1.0.6 \"$DESTDIR/usr/lib\""
+ ]
+}