Skip to content
Permalink
update-mpfr-402
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 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
}