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

Add patchelf #357

Merged
merged 1 commit into from
Apr 14, 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/patchelf/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/bash

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

package:
name: patchelf
version: {{ version }}

source:
fn: patchelf-{{ version }}.tar.gz
url: http://nixos.org/releases/patchelf/patchelf-{{ version }}/patchelf-{{ version }}.tar.gz
md5: 3c265508526760f233620f35d79c79fc

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

test:
commands:
- patchelf --help

about:
home: http://nixos.org/patchelf.html
license: GPL 3
summary: A small utility to modify the dynamic linker and RPATH of ELF executables.

extra:
recipe-maintainers:
- jakirkham