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

MAKEDEPS="make flex"
DEPS="glibc"

PKG_VER=1.8
SOURCE=http://libndp.org/files/libndp-$PKG_VER.tar.gz
DESC="A wrapper for IPv6 Neighbor Discovery Protocol"

build () {
    ./configure --prefix=/usr        \
            --sysconfdir=/etc    \
            --localstatedir=/var \
            --disable-static     &&
    make
}

package () {
    make DESTDIR=$PKG_DEST install
}