X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id C19F2DC0591 for ; Fri, 14 Aug 2015 14:28:44 +0000 (UTC) Received: from mail-qk0-f175.google.com (mail-qk0-f175.google.com [209.85.220.175]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 8C98BDC0175 for ; Fri, 14 Aug 2015 14:28:44 +0000 (UTC) Received: by qkbm65 with SMTP id m65so26002892qkb.2 for ; Fri, 14 Aug 2015 07:28:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=DWpsJZk0SOEdBmPXlYilhITuvDJeKaLSd61CQbYO5lc=; b=WCRuQMk0ch3GQW3xi7QlAlFsokg1eQyo01V0SCweGjUdd7k9B8Ko6Uyq/4C2nQMiVg Jzb4hssuAA120gPty6IFXPwf+1rVyjtBaa9c0MBnCCe+V34dTRPtiGLtNvRqrB6BVtNP 7pqgCefs7B3zVM0uByFJzEz9lY4VphMKSAbCQXBD94JsfwdEvGmCe64HFjZp2Zu+XUxx aGH3cDwRykB7aKnrUsTJr4X6R4lMRCvpSoTeNy/xL+9RscWtxQkemqDvSnYCnYPDVsO+ US1SgKEONejWTWLiB00BCno7LJtcXRYliJ7vExZFx2j2p8eju590HAmbFNc550C8I/Ch kSTw== X-Received: by 10.55.51.10 with SMTP id z10mr80519314qkz.38.1439562523667; Fri, 14 Aug 2015 07:28:43 -0700 (PDT) Received: from koizumi.gateway.pace.com ([32.214.179.148]) by smtp.gmail.com with ESMTPSA id t77sm3078523qge.42.2015.08.14.07.28.42 (version=TLSv1 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 14 Aug 2015 07:28:42 -0700 (PDT) From: Muh Muhten To: alpine-aports@lists.alpinelinux.org Cc: Muh Muhten Subject: [alpine-aports] [PATCH] testing/the_silver_searcher: new aport Date: Fri, 14 Aug 2015 10:28:35 -0400 Message-Id: <1439562515-32903-1-git-send-email-muh.muhten@gmail.com> X-Mailer: git-send-email 2.3.2 (Apple Git-55) X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: I'm not terribly sure what to fill for maintainer, but ncopa seems to be some kind of catchall? --- testing/the_silver_searcher/APKBUILD | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 testing/the_silver_searcher/APKBUILD diff --git a/testing/the_silver_searcher/APKBUILD b/testing/the_silver_searcher/APKBUILD new file mode 100644 index 0000000..a285e7a --- /dev/null +++ b/testing/the_silver_searcher/APKBUILD @@ -0,0 +1,33 @@ +# Contributor: Michael Zuo +# Maintainer: Natanael Copa +pkgname=the_silver_searcher +pkgver=0.30.0 +pkgrel=0 +pkgdesc="A code searching tool similar to ack, with a focus on speed." +url="http://geoff.greer.fm/ag/" +arch="all" +license="Apache" +depends="" +makedepends="pcre-dev xz-dev" +subpackages="" +source="http://geoff.greer.fm/ag/releases/$pkgname-$pkgver.tar.gz" + +_builddir="$srcdir"/$pkgname-$pkgver +build () { + cd $srcdir/$pkgname-$pkgver + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + || return 1 + make +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 +} + +md5sums="95e2e7859fab1156c835aff7413481db the_silver_searcher-0.30.0.tar.gz" +sha256sums="b4bf9e50bf48bc5fde27fc386f7bcad8644ef15a174c862a10813e81bd127e69 the_silver_searcher-0.30.0.tar.gz" +sha512sums="e41f9d00b6588d304c11216e1bf86cae8135d29022da35b8f1b3e2337b9b9b5f7e37756ed35e065d29636c6ad4b79725a73c8df212c2423b4e9fea64ae2d657f the_silver_searcher-0.30.0.tar.gz" -- 2.3.2 (Apple Git-55) --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---