Skip to content

Commit

Permalink
Merge pull request #300 from salford-systems/new-recipe-binutils
Browse files Browse the repository at this point in the history
New recipe for GNU Binutils
  • Loading branch information
ocefpaf committed Apr 10, 2016
2 parents 932ee03 + 8b5da35 commit bc2a289
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
6 changes: 6 additions & 0 deletions recipes/binutils/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
mkdir build
cd build

../configure --prefix="$PREFIX"
make
make install-strip
42 changes: 42 additions & 0 deletions recipes/binutils/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{% set version = "2.26" %}

package:
name: binutils
version: {{ version }}

source:
fn: binutils-{{ version }}.tar.bz2
url: https://ftp.gnu.org/gnu/binutils/binutils-{{ version }}.tar.bz2
sha256: c2ace41809542f5237afc7e3b8f32bb92bc7bc53c6232a84463c423b0714ecd9

build:
number: 0
skip: True # [not linux]

test:
commands:
- addr2line --help
- ar --help
- as --help
- c++filt --help
- elfedit --help
- gprof --help
- ld --help
- ld.bfd --help
- nm --help
- objcopy --help
- objdump --help
- ranlib --help
- readelf --help
- size --help
- strings --help
- strip --help

about:
home: https://www.gnu.org/software/binutils/
license: GPL 3
summary: A set of programming tools for creating and managing binary programs, object files, libraries, profile data, and assembly source code.

extra:
recipe-maintainers:
- frol

0 comments on commit bc2a289

Please sign in to comment.