summaryrefslogtreecommitdiff
path: root/repo/system/gc.xibuild
blob: c130888db95416cf4767ec6da2782655165f2fe5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

DEPS=(gcc)

PKG_VER=8.0.6
SOURCE=https://github.com/ivmai/bdwgc/releases/download/v$PKG_VER/gc-$PKG_VER.tar.gz
DESC="A garbage collector for C and C++"

build () {
    ./configure --prefix=/usr --disable-static
    make
}

package () {
    make DESTDIR=$PKG_DEST install
}