summaryrefslogtreecommitdiff
path: root/repo/skip/test.xibuild
blob: 8a8902f0f7fc20553a10c809b9ef9b1e5507d37f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh

NAME="test"
DESC="no description"

MAKEDEPS="make "
DEPS="musl
openrc"

PKG_VER=1.7
SOURCE="https://test.com/test-$PKG_VER.tar.gz"
ADDITIONAL="libev-4.11-Add-pkgconfig-support.patch "
build () {
    ./configure \
        --prefix=/usr
        --bindir=/usr/bin \
        --sysconfdir=/etc \
        --disable-static
    make
}

package () {
    make DESTDIR=$PKG_DEST install
}