Skip to content
Permalink
c768ade489
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 40 lines (29 sloc) 685 Bytes
#!/usr/bin/env beesh
# BEE_VERSION findutils-4.8.0-0
#SRCURL[0]="https://ftp.gnu.org/gnu/findutils/findutils--${PKGVERSION}.tar.xz
SRCURL[0]="https://beehive.molgen.mpg.de/eeefe2e6380931a77dfa6d9350b43186/findutils-4.8.0.tar.xz"
# PATCHURL+=()
# build_in_sourcedir
# sourcesubdir_append src
#mee_extract() {
# bee_extract "${@}"
#}
#mee_patch() {
# bee_patch "${@}"
#}
mee_configure_pre() {
sed -i -e '/LOCATE_DB\s*=/ s|/locatedb|/lib/locate/locatedb|' ${S}/locate/Makefile.in
}
mee_configure() {
bee_configure \
--disable-nls
}
#mee_build() {
# bee_build
#}
mee_install() {
bee_install
cd ${D}
mkdir bin
ln -vs /usr/bin/find bin/find
}