summaryrefslogtreecommitdiff
path: root/repo/core/bc.xibuild
blob: 160b6f5c174ff5db5dc44e4488de31410a3523a8 (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/releases/download/5.2.1/bc-5.2.1.tar.xz
DESC="An arbitrary precision numeric processing language"

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