diff --git a/attr-2.4.44-1.bee b/attr-2.4.44-1.bee deleted file mode 100755 index e94bdf145..000000000 --- a/attr-2.4.44-1.bee +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/env beesh - -PGRP=( uncategorized ) - -SRCURL[0]="ftp://oss.sgi.com/projects/xfs/cmd_tars-oct_09/attr-2.4.44.src.tar.gz" - -PATCHES[0]="" - -# EXCLUDE="" - -IGNORE_DATAROOTDIR=yes -IGNORE_DOCDIR=yes -IGNORE_LOCALEDIR=yes - - -B=${S} - -mee_patch() { - bee_patch -} - -mee_configure() { - bee_configure -} - -mee_build() { - bee_build -} - -mee_install() { - make install install-lib install-dev \ - PKG_BIN_DIR=${D}${BINDIR} \ - PKG_SBIN_DIR=${D}${SBINDIR} \ - PKG_LIB_DIR=${D}${LIBDIR} \ - PKG_DEVLIB_DIR=${D}${LIBEXECDIR} \ - PKG_INC_DIR=${D}${INCLUDEDIR}/attr \ - PKG_MAN_DIR=${D}${MANDIR} \ - PKG_DOC_DIR=${D}${DATADIR}/doc/gtkhtml \ - PKG_LOCALE_DIR=${D}${DATADIR}/locale -# ln -s libattr.so.1 ${D}${LIBDIR}/libattr.so -} diff --git a/attr.be0 b/attr.be0 new file mode 100755 index 000000000..27fbc7fee --- /dev/null +++ b/attr.be0 @@ -0,0 +1,45 @@ +#!/usr/bin/env beesh + +# BEE_VERSION attr-2.4.48_p12_ff1b6ff-0 + +# more info: https://savannah.nongnu.org/projects/attr + +# bee download "https://git.savannah.gnu.org/git/attr.git" + +SRCURL[0]="/src/mariux/beeroot/downloads/attr-${PKGFULLVERSION}.tar.bz2" + +# PATCHURL+=() + +# build_in_sourcedir + +# sourcesubdir_append src + +#mee_extract() { +# bee_extract "${@}" +#} + +#mee_patch() { +# bee_patch "${@}" +#} + +mee_configure() { + # bug: bee_configure() will call autoreconf in ${B} + cd ${S} + bee_configure +} + +mee_configure_post() { + # bug: bee_configure() will call autoreconf + start_cmd ${S}/configure ${DEFCONFIG} "$@" \ + --disable-silent-rules \ + --disable-nls +} + +#mee_build() { +# PS1='### mee_build() \w/# ' bash -norc +# bee_build +#} + +mee_install_post() { + rm -vrf ${D}/usr/share/doc +}