Skip to content
Permalink
master
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 31 lines (21 sloc) 521 Bytes
#!/bin/env beesh
# BEE_VERSION nano-5.7-0
# https://www.nano-editor.org/dist/v5/nano-5.7.tar.x
SRCURL[0]=https://beehive.molgen.mpg.de/c2d6540a33248edc31a5830861b4b4ea/nano-5.7.tar.xz
PATCHES[0]=""
SYSCONFDIR=/etc/nano
mee_patch() {
bee_patch
}
mee_configure() {
bee_configure
}
mee_build() {
bee_build
}
mee_install() {
bee_install
mkdir -pv ${D}${SYSCONFDIR}
sed -i -e '/^# include.*\*/ s/^#\s*//' doc/sample.nanorc
install -v -m644 -D doc/sample.nanorc ${D}${SYSCONFDIR}/nanorc
}