Skip to content
Permalink
077d6ef2a4
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
@wwwutz
Latest commit fec1758 Jun 8, 2018 History
- be0ify
- relocate from /usr/local to /usr
- include spurious /bin symlinks
1 contributor

Users who have contributed to this file

executable file 33 lines (25 sloc) 591 Bytes
#!/usr/bin/env beesh
# BEE_VERSION ed-1.14.2-0
SRCURL[0]="https://ftp.gnu.org/pub/gnu/ed/ed-${PKGVERSION}.tar.lz"
# build_in_sourcedir
BEE_BUILDTYPE=autotools
#mee_extract() {
# bee_extract "${@}"
#}
#mee_patch() {
# bee_patch "${@}"
#}
#mee_configure() {
# start_cmd ${S}/configure --prefix=/usr
#}
mee_build() {
make CFLAGS='-Wno-misleading-indentation'
}
mee_install() {
# make install DESTDIR=${D}
bee_install
mkdir ${D}/bin
ln -s /usr/bin/ed ${D}/bin/ed
ln -s /usr/bin/red ${D}/bin/red
}
## by default this may be 'make install DESTDIR="${D}"'