diff options
author | ranke <ranke@f247ebf9-aa24-0410-a698-f940e971ad2b> | 2015-03-10 09:11:32 +0000 |
---|---|---|
committer | ranke <ranke@f247ebf9-aa24-0410-a698-f940e971ad2b> | 2015-03-10 09:11:32 +0000 |
commit | fc7993f5324dc9f1da9fcf5a3bba4410ddf42441 (patch) | |
tree | 8fbd2f339ee2bd7fcc10d924726dbdf8d2b23799 | |
parent | cdd76a1b89c14b5756dd8ccac24ec58566c4cd54 (diff) |
Add build scripts of architecture binaries of tcl/tk
git-svn-id: svn+ssh://stiller/home/schatz/reps/r-backports@102 f247ebf9-aa24-0410-a698-f940e971ad2b
-rw-r--r-- | build_tcl.sh | 15 | ||||
-rw-r--r-- | build_tk.sh | 15 |
2 files changed, 30 insertions, 0 deletions
diff --git a/build_tcl.sh b/build_tcl.sh new file mode 100644 index 0000000..fac97d2 --- /dev/null +++ b/build_tcl.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +# Script to facilitate building tcl/tk 8.6 binaries for CRAN in a chroot +# Matching CRAN sources must be in /etc/apt/sources.list of the chroot + +apt-get update +apt-get build-dep tcl8.6 + +apt-get source tcl8.6 + +cd tcl8.6-* + +dpkg-buildpackage -B + +cd .. diff --git a/build_tk.sh b/build_tk.sh new file mode 100644 index 0000000..8551133 --- /dev/null +++ b/build_tk.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +# Script to facilitate building tcl/tk 8.6 binaries for CRAN in a chroot +# Matching CRAN sources must be in /etc/apt/sources.list of the chroot + +apt-get update +apt-get build-dep tk8.6 + +apt-get source tk8.6 + +cd tk8.6-* + +dpkg-buildpackage -B + +cd .. |