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 38 lines (26 sloc) 461 Bytes
#!/bin/env beesh
# BEE_VERSION scite-4.1.7-0
SRCURL[0]="https://www.scintilla.org/scite417.tgz"
PATCHURL[0]=""
BEE_CONFIGURE=none
# EXCLUDE=""
build_in_sourcedir
mee_extract() {
tar xof ${1} -C ${S}
}
mee_patch() {
bee_patch
}
mee_configure() {
bee_configure
}
mee_build() {
cd ${S}/scintilla/gtk
make
cd ${S}/scite/gtk
make
}
mee_install() {
make install prefix=${D}/${PREFIX}
ln -s SciTE ${D}${BINDIR}/scite
}