From f507820e4b0866465ca7f660556246b8cb52a26a Mon Sep 17 00:00:00 2001 From: Peter Marquardt Date: Mon, 10 Jul 2017 11:55:33 +0200 Subject: [PATCH 1/2] indent: be0ify --- indent-2.2.10-0.bee => indent.be0 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) rename indent-2.2.10-0.bee => indent.be0 (87%) diff --git a/indent-2.2.10-0.bee b/indent.be0 similarity index 87% rename from indent-2.2.10-0.bee rename to indent.be0 index 53925d613..4a0f3de2e 100755 --- a/indent-2.2.10-0.bee +++ b/indent.be0 @@ -1,4 +1,5 @@ #!/bin/env beesh +# BEE_VERSION indent-2.2.10-1 SRCURL[0]="ftp://ftp.gnu.org/gnu/indent/indent-${PKGVERSION}.tar.gz" @@ -24,10 +25,10 @@ mee_patch() { # } mee_configure() { - bee_configure + bee_configure } # mee_configure2() { -# bee_configure +# bee_configure # } mee_build() { From 225f87db4e09d3ab844f8c40c86bf95932f778c3 Mon Sep 17 00:00:00 2001 From: Peter Marquardt Date: Mon, 10 Jul 2017 12:29:58 +0200 Subject: [PATCH 2/2] indent: fix manpage creation Now indent.1 get created. There is still a bug in the Makefile logic, but removing the target ( 0 byte file in tar ) quick fixes it. Signed-off-by: Peter Marquardt --- indent.be0 | 45 +++++++-------------------------------------- 1 file changed, 7 insertions(+), 38 deletions(-) diff --git a/indent.be0 b/indent.be0 index 4a0f3de2e..03a944692 100755 --- a/indent.be0 +++ b/indent.be0 @@ -1,46 +1,15 @@ -#!/bin/env beesh -# BEE_VERSION indent-2.2.10-1 - -SRCURL[0]="ftp://ftp.gnu.org/gnu/indent/indent-${PKGVERSION}.tar.gz" - -PATCHURL[0]="" +#!/usr/bin/env beesh -PGRP=( uncategorized ) - -B=${S} +# BEE_VERSION indent-2.2.10-1 -# BEE_CONFIGURE=compat +SRCURL[0]="https://ftp.gnu.org/gnu/indent/indent-${PKGVERSION}.tar.gz" -# EXCLUDE="" +# PATCHURL[0]="" -BEE_CONFIGURE="compat" +# build_in_sourcedir -BEEPASSES=1 +# sourcesubdir_append src mee_patch() { - bee_patch -} -# mee_patch2() { -# bee_patch -# } - -mee_configure() { - bee_configure -} -# mee_configure2() { -# bee_configure -# } - -mee_build() { - bee_build -} -# mee_build2() { -# bee_build -# } - -mee_install() { - bee_install + rm -v ${S}/man/indent.1 } -# mee_install2() { -# bee_install -# }