Skip to content
Permalink
66a911b91c
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
@pmenzel
Latest commit 90f9822 Jun 6, 2016 History
Copy the files from the directory `/src/mariux/beeroot/bee-files`, change the
permissions, run `git init` to create a repository with all the bee files.
1 contributor

Users who have contributed to this file

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
}