#!/bin/bash

MAKEDEPS=(make )
DEPS=(glibc acl attr)

PKG_VER=4.8
SOURCE=https://ftp.gnu.org/gnu/sed/sed-$PKG_VER.tar.xz
DESC="GNU stream editor"

build () {
    ./configure --prefix=/usr
    make
    make html
}

package () {
    make DESTDIR=$PKG_DEST install 

    install -d -m755    $PKG_DEST/usr/share/doc/sed-$PKG_VER
    install -m644 doc/sed.html $PKG_DEST/usr/share/doc/sed-$PKG_VER
}