Skip to content
Permalink
405ac070b8
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 39 lines (25 sloc) 583 Bytes
#!/bin/env beesh
SRCURL[0]="ftp://ftp.figlet.org/pub/figlet/program/unix/figlet-${PKGVERSION}.tar.gz"
PATCHURL[0]=""
BEE_CONFIGURE=none
# EXCLUDE=""
B=${S}
mee_extract() {
bee_extract ${@}
}
mee_patch() {
bee_patch ${@}
}
mee_configure() {
bee_configure
}
mee_build() {
bee_build prefix=${PREFIX}
}
mee_install() {
bee_install prefix=${PREFIX}
mkdir -pv ${D}${BINDIR}
echo '#!/bin/bash' >${D}${BINDIR}/banner
echo "exec ${BINDIR}/figlet -f banner -- \${@}" >>${D}${BINDIR}/banner
chmod 755 ${D}${BINDIR}/banner
}