From fc7993f5324dc9f1da9fcf5a3bba4410ddf42441 Mon Sep 17 00:00:00 2001 From: ranke Date: Tue, 10 Mar 2015 09:11:32 +0000 Subject: 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 --- build_tcl.sh | 15 +++++++++++++++ build_tk.sh | 15 +++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 build_tcl.sh create mode 100644 build_tk.sh 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 .. -- cgit v1.2.1