diff --git a/clinfo.be0 b/clinfo.be0 new file mode 100755 index 000000000..27eaf13b9 --- /dev/null +++ b/clinfo.be0 @@ -0,0 +1,40 @@ +#!/usr/bin/env beesh + +# BEE_VERSION clinfo-3.0.21.02.21-0 + +SRCURL[0]="https://github.com/Oblomov/clinfo/archive/refs/tags/${PKGVERSION}.tar.gz clinfo-${PKGVERSION}.tar.gz" + +# PATCHURL+=() + +# build_in_sourcedir + +# sourcesubdir_append src + +#mee_extract() { +# bee_extract "${@}" +#} + +#mee_patch() { +# bee_patch "${@}" +#} + +#mee_configure() { +# bee_configure +#} + +#mee_build() { +# bee_build +#} + +mee_install() { + # upstream Makefile does not support DESTDIR + # Use modes 755 over 555 and 644 and 444 + mkdir -p ${D}${BINDIR} + mkdir -p ${D}${MANDIR}/man1 + start_cmd install -p -m 555 clinfo ${D}${BINDIR}/clinfo + start_cmd install -p -m 444 man1/clinfo.1 ${D}${MANDIR}/man1/clinfo.1 +} + +#mee_install_post() { +# exit +#}