summaryrefslogtreecommitdiff
path: root/repo/core/bc.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/core/bc.xibuild')
-rw-r--r--repo/core/bc.xibuild15
1 files changed, 0 insertions, 15 deletions
diff --git a/repo/core/bc.xibuild b/repo/core/bc.xibuild
deleted file mode 100644
index 160b6f5..0000000
--- a/repo/core/bc.xibuild
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/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
-}
-
-