Permalink
Cannot retrieve contributors at this time
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?
bee-files/e2fsprogs.be0
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
executable file
62 lines (51 sloc)
1.42 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env beesh | |
# BEE_VERSION e2fsprogs-1.45.4-3 | |
# SRCURL[0]="https://prdownloads.sourceforge.net/e2fsprogs/e2fsprogs-${PKGVERSION}.tar.gz" | |
SRCURL[0]="https://beehive.molgen.mpg.de/2c2f9d4bcd0be54b3b3b8d5feec7b0ff/e2fsprogs-1.45.4.tar.gz" | |
# PATCHURL+=() | |
# build_in_sourcedir | |
# 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 | |
} |