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

DEPS=(gcc-libs)

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
}