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

Adding diffutils to conda-forge #11170

Merged
merged 3 commits into from
Mar 30, 2020
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
5 changes: 5 additions & 0 deletions recipes/diffutils/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
./configure --prefix=$PREFIX

make -j $CPU_COUNT
make install
make installcheck
44 changes: 44 additions & 0 deletions recipes/diffutils/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{% set name = "diffutils" %}
{% set version = "3.6" %}
{% set sha256 = "d621e8bdd4b573918c8145f7ae61817d1be9deb4c8d2328a65cea8e11d783bd6" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: http://ftp.gnu.org/gnu/{{ name }}/{{ name }}-{{ version }}.tar.xz
sha256: {{ sha256 }}

build:
number: 0
skip: True # [win]

requirements:
build:
- {{ compiler('c') }}
host:
- libiconv

test:
commands:
- cmp --version
- diff --version
- diff3 --version
- sdiff --version

about:
home: https://www.gnu.org/software/diffutils/
license: GPL-3.0-or-later
license_family: GPL
license_file: COPYING
summary: 'GNU Diffutils is a package of several programs related to finding differences between files.'

doc_url: https://www.gnu.org/software/diffutils/manual/html_node/index.html
dev_url: http://git.savannah.gnu.org/cgit/diffutils.git

extra:
recipe-maintainers:
- bgruening
- beatrizserrano
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@beatrizserrano do you agree to be a maintainer of this recipe?

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sure :)

- davelopez