blob: 087620e7cc153be7d81f2e496347fe4e1b05928d (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 | #!/bin/bash
DEPS=(glibc acl attr)
SOURCE=https://www.gnu.org/software/sed/
DESC="GNU stream editor"
build () {
    ./configure --prefix=/usr
    make
    make html
    make DESTDIR=$PKG_DEST install 
}
package () {
    install -d -m755    $PKG_DEST/usr/share/doc/sed-4.8
    install -m644 doc/sed.html $PKG_DEST/usr/share/doc/sed-4.8
}
 |