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
I like the idea of having no deps on gconf/gsettings, since
emacs users are possibly more emacs-centric, than gnome-
centric.

OTOH a GTK-3 facelift for the dinosaur, why not?
1 contributor

Users who have contributed to this file

executable file 42 lines (29 sloc) 555 Bytes
#!/bin/env beesh
# BEE_VERSION emacs-26.1-0
SRCURL[0]="ftp://ftp.gnu.org/pub/gnu/emacs/emacs-${PKGVERSION}.tar.gz"
PATCHURL[0]=""
# BEE_CONFIGURE=compat
# EXCLUDE=""
#B=${S}
mee_extract() {
bee_extract ${@}
}
mee_patch() {
bee_patch ${@}
}
mee_configure() {
bee_configure \
--without-gconf \
--without-gsettings \
--with-x \
--with-x-toolkit=gtk3
}
mee_build() {
bee_build
}
mee_install() {
bee_install
}
mee_install_post() {
mv -v ${D}${BINDIR}/ctags{,-emacs}
}