diff --git a/libestr-0.1.0-0.bee b/libestr-0.1.0-0.bee deleted file mode 100755 index 58c57de25..000000000 --- a/libestr-0.1.0-0.bee +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/env beesh - -SRCURL[0]="http://downloads.sourceforge.net/project/libestr/libestr-0.1.0.tar.gz" - -PATCHURL[0]="" - -PGRP=( uncategorized ) - - - -# BEE_CONFIGURE=compat - -# EXCLUDE="" - -mee_patch() { - bee_patch -} - -mee_configure() { - bee_configure -} - -mee_build() { - bee_build -} - -mee_install() { - bee_install -} - diff --git a/libestr.be0 b/libestr.be0 new file mode 100755 index 000000000..a6abe0fd2 --- /dev/null +++ b/libestr.be0 @@ -0,0 +1,39 @@ +#!/usr/bin/env beesh + +# BEE_VERSION libestr-0.1.11-1 + +# more info: https://libestr.adiscon.com +# dependency of rsyslog + +SRCURL[0]="https://libestr.adiscon.com/files/download/libestr-${PKGVERSION}.tar.gz" + +# PATCHURL+=() + +# build_in_sourcedir + +# sourcesubdir_append src + +#mee_extract() { +# bee_extract "${@}" +#} + +#mee_patch() { +# bee_patch "${@}" +#} + +mee_configure() { + bee_configure \ + --disable-shared +} + +#mee_build() { +# bee_build +#} + +#mee_install() { +# bee_install +#} + +#mee_install_post() { +# exit +#} diff --git a/libfastjson.be0 b/libfastjson.be0 new file mode 100755 index 000000000..1acf68ae3 --- /dev/null +++ b/libfastjson.be0 @@ -0,0 +1,40 @@ +#!/usr/bin/env beesh + +# BEE_VERSION libfastjson-0.99.8-1 + +# rsyslog dependency + +SRCURL[0]="https://github.com/rsyslog/libfastjson/archive/v${PKGVERSION}.tar.gz ${PKGNAME}-${PKGFULLVERSION}.tar.gz" + +# PATCHURL+=() + +build_in_sourcedir + +# sourcesubdir_append src + +#mee_extract() { +# bee_extract "${@}" +#} + +#mee_patch() { +# bee_patch "${@}" +#} + +mee_configure() { + autoreconf -fvi + bee_configure \ + --disable-shared +# PS1='xxx ' bash -norc +} + +#mee_build() { +# bee_build +#} + +#mee_install() { +# bee_install +#} + +#mee_install_post() { +# exit +#} diff --git a/rsyslog-6.1.2-0.bee b/rsyslog-6.1.2-0.bee deleted file mode 100755 index d12460f8e..000000000 --- a/rsyslog-6.1.2-0.bee +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/env beesh - -SRCURL[0]="http://www.rsyslog.com/files/download/rsyslog/rsyslog-6.1.2.tar.gz" - -PATCHURL[0]="" - -PGRP=( uncategorized ) - - - -# BEE_CONFIGURE=compat - -# EXCLUDE="" - -mee_patch() { - bee_patch -} - -mee_configure() { - bee_configure -} - -mee_build() { - bee_build -} - -mee_install() { - bee_install -} - diff --git a/rsyslog.be0 b/rsyslog.be0 new file mode 100755 index 000000000..9b3d1a39e --- /dev/null +++ b/rsyslog.be0 @@ -0,0 +1,46 @@ +#!/usr/bin/env beesh + +# BEE_VERSION rsyslog-8.1910.0-1 + +# more info: https://foo.bar.com + +SRCURL[0]="http://www.rsyslog.com/files/download/rsyslog/rsyslog-${PKGVERSION}.tar.gz" + +# PATCHURL+=() + +# build_in_sourcedir + +# sourcesubdir_append src + +#mee_extract() { +# bee_extract "${@}" +#} + +#mee_patch() { +# bee_patch "${@}" +#} + +mee_configure() { + bee_configure \ + --disable-silent-rules \ + --disable-fmhash \ + --disable-fmhttp \ + --disable-default-tests \ + --disable-helgrind \ + --disable-static + +# PS1='xxx ' bash -norc +} + +#mee_build() { +# bee_build +#} + +#mee_install() { +# bee_install +#} + +mee_install_post() { + mkdir -vp ${D}/etc/systemd/system + ln -vs /lib/systemd/system/rsyslog.service ${D}/etc/systemd/system/syslog.service +}