summaryrefslogtreecommitdiff
path: root/repo/system/expat.xibuild
blob: 2a390349c4f6007a02004a68778c97cf70f8f340 (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 "
DEPS="glibc"

PKG_VER=2.4.2
SOURCE=https://github.com/libexpat/libexpat/releases/download/R_$(echo $PKG_VER | sed "s|\.|_|g")/expat-$PKG_VER.tar.xz
DESC="An XML parser library"

build () {
    ./configure --prefix=/usr --disable-static --docdir=/usr/share/doc/expat-$PKG_VER
    make
}

check () {
    make check
}

package () {
    make DESTDIR=$PKG_DEST install 

    install -v -m644 doc/*{.html,png,css} $PKG_DEST/usr/share/doc/expat-$PKG_VER
}