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 31458DC030A for ; Mon, 16 Nov 2015 11:46:59 +0000 (UTC) Received: from smtp1.tech.numericable.fr (smtp1.tech.numericable.fr [82.216.111.37]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id D9E8ADC00AC for ; Mon, 16 Nov 2015 11:46:58 +0000 (UTC) Received: from sinay.internal.skarnet.org (ip-62.net-82-216-6.versailles2.rev.numericable.fr [82.216.6.62]) by smtp1.tech.numericable.fr (Postfix) with SMTP id AF7F5140E8D for ; Mon, 16 Nov 2015 12:46:56 +0100 (CET) Received: (qmail 11028 invoked from network); 16 Nov 2015 11:47:22 -0000 Received: from alpine.internal.skarnet.org. (HELO alpine.internal.skarnet.org) (192.168.0.4) by sinay.internal.skarnet.org. with SMTP; 16 Nov 2015 11:47:22 -0000 From: Laurent Bercot To: alpine-aports@lists.alpinelinux.org Cc: Laurent Bercot Subject: [alpine-aports] [PATCH 2/4] update execline to 2.1.4.5, move its binaries to /bin Date: Mon, 16 Nov 2015 12:44:52 +0100 Message-Id: <1447674294-16425-2-git-send-email-ska-devel@skarnet.org> X-Mailer: git-send-email 2.6.3 In-Reply-To: <1447674294-16425-1-git-send-email-ska-devel@skarnet.org> References: <1447674294-16425-1-git-send-email-ska-devel@skarnet.org> X-VR-SPAMSTATE: OK X-VR-SPAMSCORE: 0 X-VR-SPAMCAUSE: gggruggvucftvghtrhhoucdtuddrfeekhedrheejgddvkecutefuodetggdotefrodftvfcurfhrohhfihhlvgemucfpfgfogfftkfevteeunffgnecuuegrihhlohhuthemuceftddtnecunecujfgurhephffvufffkffojghfsedttdertdertddtnecuhfhrohhmpefnrghurhgvnhhtuceuvghrtghothcuoehskhgrqdguvghvvghlsehskhgrrhhnvghtrdhorhhgqeenucffohhmrghinhepshhkrghrnhgvthdrohhrghenucfrrghrrghmpehmohguvgepshhmthhpohhuth X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- main/execline/APKBUILD | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/main/execline/APKBUILD b/main/execline/APKBUILD index 554bfff..d9433da 100644 --- a/main/execline/APKBUILD +++ b/main/execline/APKBUILD @@ -1,7 +1,7 @@ +# Maintainer: Laurent Bercot # Contributor: John Regan -# Maintainer: John Regan pkgname=execline -pkgver=2.1.4.4 +pkgver=2.1.4.5 pkgrel=0 pkgdesc="A small scripting language, to be used in place of a shell in non-interactive scripts." url="http://skarnet.org/software/$pkgname/" @@ -11,7 +11,7 @@ depends="skalibs" depends_dev="skalibs-dev" makedepends="$depends_dev" install="" -subpackages="$pkgname-dev" +subpackages="$pkgname-dev $pkgname-doc" source="http://skarnet.org/software/$pkgname/$pkgname-$pkgver.tar.gz" _builddir="$srcdir/$pkgname-$pkgver" @@ -28,15 +28,15 @@ prepare() { build() { cd "$_builddir" ./configure \ - --build=$CBUILD \ --host=$CHOST \ --enable-shared \ --enable-static \ --disable-allstatic \ - --prefix=/usr \ --libdir=/usr/lib \ + --with-dynlib=/lib \ || return 1 make || return 1 + make strip || return 1 } package() { @@ -44,6 +44,12 @@ package() { make DESTDIR="$pkgdir" install || return 1 } -md5sums="f2fef90719507905217ce6a68f80dc33 execline-2.1.4.4.tar.gz" -sha256sums="b9c4b4905e17a7caa4f187d62ce0755644a478ec9ea7f13f7bdbaca3c91ce425 execline-2.1.4.4.tar.gz" -sha512sums="85420725dfde0147279a14f8f19d642c1bee2b123a002f2233f2d72db35bce63ab76077c92d4705b980f6f44a3ba2a8ffb0f9bddac2d8a189af26e0e823a363d execline-2.1.4.4.tar.gz" +doc() { + default_doc + mkdir -p "$subpkgdir/usr/share/doc" + cp -a "$_builddir/doc" "$subpkgdir/usr/share/doc/$pkgname" +} + +md5sums="94eae34d6ebb1141864a2d9f7babd342 execline-2.1.4.5.tar.gz" +sha256sums="ab4451d4992a5d7fb2ae34cffe4d0806e4902bf9aa27ee3b75617aa35379356f execline-2.1.4.5.tar.gz" +sha512sums="15a76c73afe98142b9f466edb442cad06ee69f0f0e15ad6a325c37f3878b4c5863b5cece67bd169e84b465a0f7f4f38f87fa88b2aa96fe40a20ebc3575a1ceb9 execline-2.1.4.5.tar.gz" -- 2.6.3 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---