Skip to content

Commit

Permalink
Merge pull request #357 from jakirkham/add_patchelf
Browse files Browse the repository at this point in the history
Add patchelf
  • Loading branch information
pelson committed Apr 14, 2016
2 parents c1c9fcb + b48abca commit 96e8c3a
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
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

0 comments on commit 96e8c3a

Please sign in to comment.