diff --git a/recipes/patchelf/build.sh b/recipes/patchelf/build.sh new file mode 100755 index 0000000000000..3fa44dd4e6667 --- /dev/null +++ b/recipes/patchelf/build.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +./configure --prefix=$PREFIX +make +make tests +make install + diff --git a/recipes/patchelf/meta.yaml b/recipes/patchelf/meta.yaml new file mode 100644 index 0000000000000..dd7bb15872dc6 --- /dev/null +++ b/recipes/patchelf/meta.yaml @@ -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