From b48abcacc5c3f96f246baa586d18ec4bf0bb983d Mon Sep 17 00:00:00 2001 From: John Kirkham Date: Thu, 14 Apr 2016 03:12:56 -0400 Subject: [PATCH] patchelf: Add a recipe to build patchelf. [skip appveyor] --- recipes/patchelf/build.sh | 6 ++++++ recipes/patchelf/meta.yaml | 27 +++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100755 recipes/patchelf/build.sh create mode 100644 recipes/patchelf/meta.yaml diff --git a/recipes/patchelf/build.sh b/recipes/patchelf/build.sh new file mode 100755 index 0000000000000..4aed7e74fd49f --- /dev/null +++ b/recipes/patchelf/build.sh @@ -0,0 +1,6 @@ +#!/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