X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mail-vk0-f66.google.com (mail-vk0-f66.google.com [209.85.213.66]) by lists.alpinelinux.org (Postfix) with ESMTP id 5FAD95C429C for ; Sat, 17 Sep 2016 19:49:19 +0000 (GMT) Received: by mail-vk0-f66.google.com with SMTP id b133so2945522vka.2 for ; Sat, 17 Sep 2016 12:49:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id; bh=yizGDnNFi43YG4qdaMboV3pGJhHJgE3ueWaL9F+H9jA=; b=JU1SblC0ANyjf/8ARydMLDkOWm2Mr8cyX8o/1umJflpCs49tRFrSlfctOhdFnOmK8p p5hW/wbKzxvkSEeh5CwYzc3gBsJQwHCRFI/2JH2JMc/xHoAaK4FexGhSVxpf9FxwZxQA Mwc2hh5oiMTOeiNveRjcM1JC0WhmHYcET10a1mlMq4XfKFG6qz1gtt1qR4+UndJ/7JAa hpL+0cOfyoFBxi27yLvEzsRYdQsFBYler1kqd43ZyFV9Ktt6b8ObN8iLZbdTaxVtNIzI fz3FMJPc/14Phyjg3/XII1qMVKqasPK0WwakYIXVCTG47pr7dpOURNmupaRw9ZKvS5Aw mk5g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id; bh=yizGDnNFi43YG4qdaMboV3pGJhHJgE3ueWaL9F+H9jA=; b=llixBxMtDX1Sd3zTSXDUenK0w7V26LD3p7Cvi4ODvj1TZJqCo0in/WFfyyLa94o9r3 Psyiarg44jkIQWzERzk23NQ9bYjRR+7fo+2iUKwcbEwM3wM05YxHmtt5XktOGIPSx6iA N8qzpNJIyXuWrK6oV6tyW6GoON0qcaSyH9qLy+pskcTrrTwepdRVqd1XvddmBEy1T8up Pg9ouf3twl28JwQGAzgNUU7CVoRpTyic3VP1Lw46YuF+1f10wOd2l7kide1sjk20cugS YReo5/io1aGnDSiDBISinRNSveo/Olf+Vz7B6rAHzvYGTwI7MDMAtkE5Pw4sII1iJ18q eIGA== X-Gm-Message-State: AE9vXwNp9LN5fZVlCly7syGeggNDQSUV3k2mmThcunrZTvZcMPr58xjZzFvelzKvvW1Bzg== X-Received: by 10.31.174.78 with SMTP id x75mr8920154vke.27.1474141758092; Sat, 17 Sep 2016 12:49:18 -0700 (PDT) Received: from sandbox.my.domain (c-71-204-126-149.hsd1.ga.comcast.net. [71.204.126.149]) by smtp.gmail.com with ESMTPSA id h30sm2747924uad.25.2016.09.17.12.49.16 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 17 Sep 2016 12:49:17 -0700 (PDT) From: Cliff Free To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH] testing/cscope Date: Sat, 17 Sep 2016 15:12:04 -0400 Message-Id: <20160917191204.24275-1-nucular.limozeen@gmail.com> X-Mailer: git-send-email 2.10.0 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: http://cscope.sourceforge.net Cscope is a developer's tool for browsing source code. --- testing/cscope/APKBUILD | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 testing/cscope/APKBUILD diff --git a/testing/cscope/APKBUILD b/testing/cscope/APKBUILD new file mode 100644 index 0000000..0214ef7 --- /dev/null +++ b/testing/cscope/APKBUILD @@ -0,0 +1,39 @@ +# Contributor: Cliff Free +# Maintainer: +pkgname=cscope +pkgver=15.8b +pkgrel=0 +pkgdesc="Cscope is a developer's tool for browsing source code." +url="http://cscope.sourceforge.net/" +arch="all" +license="BSD" +depends="ncurses" +depends_dev="" +makedepends="$depends_dev" +install="" +subpackages="$pkgname-doc" +source="http://downloads.sourceforge.net/project/cscope/cscope/$pkgver/cscope-$pkgver.tar.gz" +builddir="$srcdir/cscope-$pkgver" + +build() { + cd "$builddir" + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --localstatedir=/var \ + || return 1 + make || return 1 + +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install || return 1 +} + +md5sums="8f9409a238ee313a96f9f87fe0f3b176 cscope-15.8b.tar.gz" +sha256sums="4889d091f05aa0845384b1e4965aa31d2b20911fb2c001b2cdcffbcb7212d3af cscope-15.8b.tar.gz" +sha512sums="3ebb9cc5bc814c02edb3e395a48e6fe2f206dd698529582e7df81755b335e8c3f4477ad4e8abcefd16d4d9adfd72981916322756b7060acf38fc82d56cc97fd5 cscope-15.8b.tar.gz" -- 2.10.0 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---