mirror of
https://github.com/ivabus/pantry
synced 2024-11-22 08:25:07 +03:00
+gnu.org/bc (#4947)
* new file: projects/gnu.org/bc/package.yml * modified: projects/gnu.org/bc/package.yml
This commit is contained in:
parent
1fb22461ec
commit
136f6d065d
1 changed files with 38 additions and 0 deletions
38
projects/gnu.org/bc/package.yml
Normal file
38
projects/gnu.org/bc/package.yml
Normal file
|
@ -0,0 +1,38 @@
|
|||
distributable:
|
||||
url: https://ftp.gnu.org/gnu/bc/bc-{{version.raw}}.tar.gz
|
||||
strip-components: 1
|
||||
|
||||
versions:
|
||||
url: https://ftp.gnu.org/gnu/bc/
|
||||
match: /bc-\d+\.\d+\.\d+\.tar\.gz/
|
||||
strip:
|
||||
- /^bc-/
|
||||
- /\.tar\.gz$/
|
||||
|
||||
dependencies:
|
||||
github.com/westes/flex: ^2.6
|
||||
|
||||
build:
|
||||
dependencies:
|
||||
gnu.org/bison: '*'
|
||||
gnu.org/ed: '*'
|
||||
gnu.org/texinfo: '*'
|
||||
script:
|
||||
- ./configure $ARGS
|
||||
- make --jobs {{hw.concurrency}} install
|
||||
env:
|
||||
ARGS:
|
||||
- --disable-debug
|
||||
- --disable-dependency-tracking
|
||||
- --disable-silent-rules
|
||||
- --prefix={{prefix}}
|
||||
- --infodir={{prefix}}/share/info
|
||||
- --mandir={{prefix}}/share/man
|
||||
- --with-libedit
|
||||
|
||||
provides:
|
||||
- bin/bc
|
||||
|
||||
test:
|
||||
- bc --version | grep {{version.raw}}
|
||||
- echo '150+150' | bc | grep 300
|
Loading…
Reference in a new issue