Skip to content
Permalink
726b4877f9
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
@pmenzel
Latest commit 90f9822 Jun 6, 2016 History
Copy the files from the directory `/src/mariux/beeroot/bee-files`, change the
permissions, run `git init` to create a repository with all the bee files.
1 contributor

Users who have contributed to this file

executable file 24 lines (16 sloc) 512 Bytes
#!/usr/bin/env beesh
SRCURL[0]="http://www-zeuthen.desy.de/~friebel/unix/less/lesspipe.tar.gz"
ARCH=noarch
build_in_sourcedir
mee_configure() {
${S}/configure --prefix=${PREFIX} --default --shell=/bin/bash
}
mee_install() {
mkdir -p ${D}${BINDIR}
mkdir -p ${D}${MANDIR}/man1
cp ./code2color ./sxw2txt ./lesspipe.sh ${D}${BINDIR}
cp ./lesspipe.1 ${D}${MANDIR}/man1
chmod 0755 ${D}${BINDIR}/lesspipe.sh
chmod 0755 ${D}${BINDIR}/sxw2txt
chmod 0755 ${D}${BINDIR}/code2color
}