Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New recipe for GNU Binutils #300

Merged
merged 1 commit into from
Apr 10, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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