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 38 lines (23 sloc) 536 Bytes
#!/bin/env beesh
PGRP=( core )
SRCURL[0]="ftp://ftp.gnu.org/gnu/ncurses/ncurses-5.7.tar.gz"
PATCHES[0]=""
# EXCLUDE=""
IGNORE_DATAROOTDIR=yes
IGNORE_LOCALEDIR=yes
IGNORE_DOCDIR=yes
mee_patch() {
bee_patch
}
mee_configure() {
bee_configure --with-shared --without-normal --without-debug --without-cxx-binding
}
mee_build() {
bee_build sources libs
}
mee_install() {
mkdir -pv ${D}/${LIBDIR}
mkdir -pv ${D}/lib
cp -av lib/lib*.so.5* ${D}${LIBDIR}
mv -v ${D}${LIBDIR}/libncurses.so.5* ${D}/lib
}