summaryrefslogtreecommitdiff
path: root/strata/devtools
diff options
context:
space:
mode:
Diffstat (limited to 'strata/devtools')
-rw-r--r--strata/devtools/git.morph11
-rw-r--r--strata/devtools/nano.morph16
-rw-r--r--strata/devtools/pv.morph5
-rw-r--r--strata/devtools/screen.morph11
-rw-r--r--strata/devtools/vim.morph10
-rw-r--r--strata/devtools/wget.morph10
6 files changed, 0 insertions, 63 deletions
diff --git a/strata/devtools/git.morph b/strata/devtools/git.morph
deleted file mode 100644
index da7a8c04..00000000
--- a/strata/devtools/git.morph
+++ /dev/null
@@ -1,11 +0,0 @@
-name: git
-kind: chunk
-build-system: autotools
-pre-configure-commands:
-- make configure
-build-commands:
-- make all doc
-install-commands:
-- make DESTDIR="$DESTDIR" install install-doc
-post-install-commands:
-- install -D -m 644 -t "$DESTDIR"/etc/bash_completion.d/. contrib/completion/git-completion.bash
diff --git a/strata/devtools/nano.morph b/strata/devtools/nano.morph
deleted file mode 100644
index 3eeee120..00000000
--- a/strata/devtools/nano.morph
+++ /dev/null
@@ -1,16 +0,0 @@
-name: nano
-kind: chunk
-build-system: autotools
-configure-commands:
-- ./configure --prefix="$PREFIX" --sysconfdir=/etc
-post-install-commands:
-- |
- cat <<EOF >> nanorc
- set smooth
- include /usr/share/nano/c.nanorc
- include /usr/share/nano/patch.nanorc
- include /usr/share/nano/python.nanorc
- include /usr/share/nano/sh.nanorc
- EOF
-- mkdir -p "$DESTDIR"/etc
-- install -m 644 nanorc "$DESTDIR"/etc/nanorc
diff --git a/strata/devtools/pv.morph b/strata/devtools/pv.morph
deleted file mode 100644
index 392bff6a..00000000
--- a/strata/devtools/pv.morph
+++ /dev/null
@@ -1,5 +0,0 @@
-name: pv
-kind: chunk
-build-system: autotools
-configure-commands:
-- ./configure --prefix="$PREFIX"
diff --git a/strata/devtools/screen.morph b/strata/devtools/screen.morph
deleted file mode 100644
index 0b23c5d4..00000000
--- a/strata/devtools/screen.morph
+++ /dev/null
@@ -1,11 +0,0 @@
-name: screen
-kind: chunk
-description: A terminal multiplexer and sanity tool for many
-max-jobs: 1
-configure-commands:
-- cd ./src && sh autogen.sh
-- cd ./src && ./configure --prefix="$PREFIX"
-build-commands:
-- cd ./src && make
-install-commands:
-- cd ./src && make DESTDIR="$DESTDIR" install
diff --git a/strata/devtools/vim.morph b/strata/devtools/vim.morph
deleted file mode 100644
index 58e1403f..00000000
--- a/strata/devtools/vim.morph
+++ /dev/null
@@ -1,10 +0,0 @@
-name: vim
-kind: chunk
-build-system: autotools
-configure-commands:
-- echo '#define SYS_VIMRC_FILE "/etc/vimrc"' >>src/feature.h
-- ./configure --prefix="$PREFIX" --enable-multibyte
-install-commands:
-- make DESTDIR="$DESTDIR" install
-- mkdir -p "$DESTDIR"/etc
-- install -m 644 runtime/vimrc_example.vim "$DESTDIR"/etc/vimrc
diff --git a/strata/devtools/wget.morph b/strata/devtools/wget.morph
deleted file mode 100644
index a3a7995a..00000000
--- a/strata/devtools/wget.morph
+++ /dev/null
@@ -1,10 +0,0 @@
-name: wget
-kind: chunk
-build-system: autotools
-pre-configure-commands:
-# rsync is needed if we want the bootstrap script to download .po files,
-# we can't download into our chroot so we remove this dependency
-- sed -i '/^buildreq="/,/"/ { /^rsync.*/ d }' bootstrap.conf
-- ./bootstrap --no-bootstrap-sync --skip-po
-configure-commands:
-- ./configure --prefix="$PREFIX" --with-ssl=openssl