Skip to content
Permalink
e20398d58a
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 68 lines (56 sloc) 1.52 KB
#!/usr/bin/env beesh
# BEE_VERSION e2fsprogs-1.45.4-2
## The source URL(s) array
SRCURL[0]="https://prdownloads.sourceforge.net/e2fsprogs/e2fsprogs-${PKGVERSION}.tar.gz"
## 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() {
# blkid, uuid, fsck are used from util-linux.
bee_configure \
--enable-verbose-makecmds \
--with-root-prefix= \
--disable-libblkid \
--disable-libuuid \
--disable-uuidd \
--disable-fsck \
--disable-nls
}
#mee_build() {
# bee_build
#}
#mee_install() {
# bee_install
#}
mee_install_post() {
mv ${D}${SYSCONFDIR}/mke2fs.conf ${D}${SYSCONFDIR}/mke2fs.conf.sample
# we dont volume manage so we dont scrub
rm -f ${D}/usr/sbin/e2scrub*
rm -f ${D}/usr/share/man/man8/e2scrub*
rm -rf ${D}/lib
rm -rf ${D}/usr/lib/e2fsprogs
rm -f ${D}${SYSCONFDIR}/e2scrub.conf
# we dont cron
rm -rv ${D}/etc/cron.d
# we dont dev
rm -v ${D}${DATADIR}/info/libext2fs.info.gz
rm -rv ${D}/usr/lib/*.a
rm -rf ${D}/usr/lib/pkgconfig
# this is in libcom-err2
rm -f ${D}/usr/bin/compile_et
rm -rf ${D}/usr/share/et
rm -f ${D}/usr/share/man/man1/compile_et.1
rm -rf ${D}/usr/share/man/man3
rm -rf ${D}/usr/include
}