summaryrefslogtreecommitdiff
path: root/repo/system/nspr/nspr.xibuild
blob: 0b5fdc5b1cda090218decf936633eb13800fdf54 (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 "
DEPS="musl"

PKG_VER=4.33

SOURCE=https://archive.mozilla.org/pub/nspr/releases/v$PKG_VER/src/nspr-$PKG_VER.tar.gz
DESC="Netscape Portable Runtime"

build () {
    cd nspr
    ./configure \
            --prefix=/usr --with-mozilla --with-pthreads --enable-64bit
    make
}

package () {
    make DESTDIR=$PKG_DEST install 
}