Skip to content

Commit

Permalink
patchelf: Add a recipe to build patchelf. [skip appveyor]
Browse files Browse the repository at this point in the history
  • Loading branch information
jakirkham committed Apr 14, 2016
1 parent a2df267 commit cd2b193
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
7 changes: 7 additions & 0 deletions recipes/patchelf/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/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 cd2b193

Please sign in to comment.