20 lines
408 B
Python
20 lines
408 B
Python
from lib import rust
|
|
from lib.make import *
|
|
|
|
version("15.2.0")
|
|
description("ripgrep recursively searches directories for a regex pattern while respecting your gitignore")
|
|
source_url("https://github.com/BurntSushi/ripgrep/archive/refs/tags/15.2.0.tar.gz")
|
|
|
|
builddep("shortcut/rust")
|
|
|
|
|
|
def build():
|
|
rust.build()
|
|
|
|
|
|
on_build(build)
|
|
|
|
package("ripgrep")
|
|
dep("semi-libc @same-arch")
|
|
rust.use_auto_pack(["bin"])
|