summaryrefslogtreecommitdiff
path: root/repo/libedit/libedit.xibuild
blob: b594d83eb20daf6b61251accc85e42391af59e0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh

MAKEDEPS="make automake autoconf"
DEPS="musl ncurses"

PKG_VER=20210910-3.1
SOURCE=https://www.thrysoee.dk/editline/libedit-20210910-3.1.tar.gz
DESC="BSD line editing library"

prepare () {
    autoreconf -fi
}

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

package () {
    make DESTDIR=$PKG_DEST install
}