X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mx1.riseup.net (mx1.riseup.net [198.252.153.129]) by lists.alpinelinux.org (Postfix) with ESMTP id 23D475C5063 for ; Sun, 5 Mar 2017 06:55:57 +0000 (GMT) Received: from cotinga.riseup.net (unknown [10.0.1.164]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "*.riseup.net", Issuer "COMODO RSA Domain Validation Secure Server CA" (verified OK)) by mx1.riseup.net (Postfix) with ESMTPS id D76D91A1BC3 for ; Sun, 5 Mar 2017 06:55:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=riseup.net; s=squak; t=1488696956; bh=4OixvlHPui82wZA7crO9FIy0lsXWP5Drg5d+SYVHE2E=; h=From:To:Subject:Date:From; b=cwIFMnsqCupHFrRocoM2Qc3ELVfhy2pTomEK8pkvtbOG1fqthkc7ag2LuxaPfq6U/ BvIL54QLs1eJQ7KiSuHI7tJcwY9YdnhjcLHGwBtRHTwj3ypt76vMNLURlwL5Cb5bwc 1eOYCCPREgcBnMOJ2hp0B6j9MsOwgpAqwZGsGd/A= Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: pickfire) with ESMTPSA id E6FFD40722 From: Ivan Tham To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH] testing/googler: new aport Date: Sun, 5 Mar 2017 14:55:52 +0800 Message-Id: <20170305065552.10880-1-pickfire@riseup.net> X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: https://github.com/jarun/googler Google Search, Google Site Search, Google News from the terminal. --- testing/googler/APKBUILD | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 testing/googler/APKBUILD diff --git a/testing/googler/APKBUILD b/testing/googler/APKBUILD new file mode 100644 index 0000000..6bac93c --- /dev/null +++ b/testing/googler/APKBUILD @@ -0,0 +1,21 @@ +# Contributor: Ivan Tham +# Maintainer: Ivan Tham +pkgname=googler +pkgver=2.9 +pkgrel=0 +pkgdesc="Google Search, Google Site Search, Google News from the terminal." +url="https://github.com/jarun/googler" +arch="noarch" +license="GPL3" +depends="python3" +subpackages="$pkgname-doc" +source="https://github.com/jarun/${pkgname}/archive/v${pkgver}.tar.gz" +builddir="$srcdir/"$pkgname-$pkgver + +package() { + cd "$builddir" + make disable-self-upgrade || return 1 + make install DESTDIR="$pkgdir" PREFIX=/usr || return 1 +} + +sha512sums="0fbeb2ca1a70f37ee35b80afebad6e587f42f2b9cae521ee9f057a82cb863509f686ef60b9428244b75a43bda6963b5805d9339e76ffb060bff7f40d8aeabe0c v2.9.tar.gz" -- 2.11.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---