summaryrefslogtreecommitdiff
path: root/repo/core/bc.xibuild
blob: 0d6da1c144be8d94855b9787bc906e52cd855ff9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

DEPS=(readline)

SOURCE=https://github.com/gavinhoward/bc
DESC="An arbitrary precision numeric processing language"

build () {
    CC=gcc ./configure --prefix=/usr -G -O3
    make
    make test
    make DESTDIR=$PKG_DEST install
}