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 53 lines (39 sloc) 1.16 KB
#!/usr/bin/env beesh
# BEE_VERSION evince-3.34.1-1
# requires:
# bee update json-glib-1.4.4-0
# bee update appstream-glib-0.7.16-0
BEE_BUILDTYPE=configure
SRCURL[0]="https://download.gnome.org/sources/evince/${PKGVERSION[2]}/evince-${PKGVERSION}.tar.xz"
# PATCHURL+=()
# build_in_sourcedir
# sourcesubdir_append src
#mee_extract() {
# bee_extract "${@}"
#}
#mee_patch() {
# bee_patch "${@}"
#}
mee_configure() {
bee_configure \
--enable-introspection \
--disable-static \
--disable-nls \
--disable-libgnome-desktop \
--disable-nautilus \
--disable-thumbnailer
}
#mee_build() {
# bee_build
#}
#mee_install() {
# bee_install
#}
## by default this may be 'make install DESTDIR="${D}"'
mee_install_post() {
start_cmd mv -v ${D}${DATAROOTDIR}/applications/{org.gnome.Evince-previewer,evince-previewer}.desktop
start_cmd mv -v ${D}${DATAROOTDIR}/applications/{org.gnome.Evince,evince}.desktop
for i in bg ca cs da de el en_GB es eu fi fr gl hu id it ja ko lv nl oc pl pt_BR ro ru sl sr sv te uk vi zh_CN zh_HK zh_TW; do
rm -rf ${D}/usr/share/help/${i}
done
}