aboutsummaryrefslogtreecommitdiffstats
path: root/travis/targets/dist-srpm.sh
blob: 87858c6e3fbcec19cd633f4888de23ba3ef382da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
build() {
    pushd build > /dev/null
    ../configure \
        CFLAGS="-Wall -g -O0" \
        --disable-silent-rules \
        --enable-ronn \
        --enable-tests \
        --enable-valgrind \
        --enable-git-receiver \
        --enable-make \
        --enable-runserver
    popd > /dev/null

    make -C build dist-srpm
}

deploy() {
    FILES=( build/*.src.rpm )
}