summaryrefslogtreecommitdiff
path: root/psibuilds/xz.psibuild
blob: e17f53b44d34cbc65f2abd985326d9c8ab24b2c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

DEPS=(sh)

SOURCE=https://git.tukaani.org/xz.git


build () {
    ./configure --prefix=/usr --disable-static --docdir=$PKG_DEST/usr/share/doc/xz-5.2.5
    make
    make check
    make DESTDIR=$PKG_DEST install
}