diff options
author | Javier Jardón <jjardon@gnome.org> | 2017-11-26 23:39:48 +0000 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2017-12-12 15:58:23 +0000 |
commit | 7df7f3b427739ff7d69da2ba218da0124822892c (patch) | |
tree | 843c75e9bede53862ab101d6a7bcd1da15a33c55 /strata/devtools | |
parent | 7aad5150f69da42b84994c353283db5daf8e967f (diff) | |
download | definitions-7df7f3b427739ff7d69da2ba218da0124822892c.tar.gz |
Remove all .morph files and files from the old format
Diffstat (limited to 'strata/devtools')
-rw-r--r-- | strata/devtools/git.morph | 11 | ||||
-rw-r--r-- | strata/devtools/nano.morph | 16 | ||||
-rw-r--r-- | strata/devtools/pv.morph | 5 | ||||
-rw-r--r-- | strata/devtools/screen.morph | 11 | ||||
-rw-r--r-- | strata/devtools/vim.morph | 10 | ||||
-rw-r--r-- | strata/devtools/wget.morph | 10 |
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 |