Skip to content
This repository has been archived by the owner on Sep 29, 2022. It is now read-only.

Add silversearcher-ag. #636

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
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
9 changes: 9 additions & 0 deletions silversearcher-ag/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/sh

aclocal && \
autoconf && \
autoheader && \
automake --add-missing && \
./configure --prefix=$PREFIX
make -j $CPU_COUNT
make install
32 changes: 32 additions & 0 deletions silversearcher-ag/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{% set build = 0 %}
{% set version = '1.0.2' %}

package:
name: silversearcher-ag
version: {{version}}

about:
home: http://geoff.greer.fm/ag/
license: Apache License
summary: A code-searching tool similar to ack, but faster.

source:
fn: the_silver_searcher-{{version}}.tar.gz
url: https://github.com/ggreer/the_silver_searcher/archive/{{version}}.tar.gz
md5: 8b7164dbcb1ae7d084179db7913d8c56

requirements:
build:
- pcre
- pkgconfig
- xz
- zlib

run:
- pcre
- pkgconfig
- xz
- zlib

build:
number: {{build}}