From 7d1085f434bde6a4a6ecac989088c28bfc8d39b3 Mon Sep 17 00:00:00 2001 From: thomas Date: Thu, 9 Mar 2017 09:23:58 +0100 Subject: [PATCH] tree: Update from version 1.5.3 to 1.7.0 - Convert to versionless bee file - Changelog http://mama.indstate.edu/users/ice/tree/changes.html (most notable is the improved XML/HTML/JSON output) --- tree-1.5.3-0.bee | 32 -------------------------------- tree.be0 | 43 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 43 insertions(+), 32 deletions(-) delete mode 100755 tree-1.5.3-0.bee create mode 100755 tree.be0 diff --git a/tree-1.5.3-0.bee b/tree-1.5.3-0.bee deleted file mode 100755 index 64cb38bf5..000000000 --- a/tree-1.5.3-0.bee +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/env beesh - -SRCURL[0]="ftp://mama.indstate.edu/linux/tree/tree-1.5.3.tgz" - -PATCHURL[0]="" - -PGRP=( uncategorized ) - -# EXCLUDE="" - -BEE_CONFIGURE="none" - -BEEPASSES=1 - -B=${S} - - -mee_patch() { - bee_patch -} - -mee_configure() { - bee_configure -} - -mee_build() { - bee_build -} - -mee_install() { - bee_install BINDIR=${D}${BINDIR} MANDIR=${D}${MANDIR}/man1 -} diff --git a/tree.be0 b/tree.be0 new file mode 100755 index 000000000..b80cbdde2 --- /dev/null +++ b/tree.be0 @@ -0,0 +1,43 @@ +#!/usr/bin/env beesh + +# BEE_VERSION tree-1.7.0-0 + +## The source URL(s) array +SRCURL[0]="http://mama.indstate.edu/users/ice/tree/src/tree-${PKGVERSION}.tgz" + +## Add URLs/paths to patch files +# PATCHURL+=() + +## files that should not be added from the image directory. +# EXCLUDE+=() + + +## uncomment to change default +# build_in_sourcedir + +## specify different source directory +# sourcesubdir_append src + + +#mee_extract() { +# bee_extract "${@}" +#} + +#mee_patch() { +# bee_patch "${@}" +#} + +#mee_configure() { +# bee_configure +#} + +#mee_build() { +# bee_build +#} + +## mee_install() should install into "${D}" +## default: 'make install DESTDIR="${D}"' + +mee_install() { + bee_install BINDIR=${D}${BINDIR} MANDIR=${D}${MANDIR}/man1 +}