Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
ed: update from 1.9 to 1.14
- be0ify
- relocate from /usr/local to /usr
- include spurious /bin symlinks
  • Loading branch information
wwwutz committed Jun 8, 2018
1 parent 8ecfa85 commit fec1758
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 85 deletions.
85 changes: 0 additions & 85 deletions ed-1.9-0.bee

This file was deleted.

33 changes: 33 additions & 0 deletions ed.be0
@@ -0,0 +1,33 @@
#!/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}"'

0 comments on commit fec1758

Please sign in to comment.