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 E9ECADC67E4 for ; Tue, 18 Aug 2015 18:46:37 +0000 (UTC) Received: from lithium.8pit.net (lithium.8pit.net [141.101.32.65]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 5016BDC855C; Tue, 18 Aug 2015 18:46:37 +0000 (UTC) Received: from localhost (ip5f5ac946.dynamic.kabel-deutschland.de [95.90.201.70]); by lithium.8pit.net (OpenSMTPD) with ESMTPSA id 0b7cbfb5; TLS version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO; Tue, 18 Aug 2015 20:46:33 +0200 (CEST) From: =?UTF-8?q?S=C3=B6ren=20Tempel?= To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH 2/3] main/debootstrap: add doc subpackage Date: Tue, 18 Aug 2015 20:46:26 +0200 Message-Id: <1439923587-3822-2-git-send-email-soeren+git@soeren-tempel.net> X-Mailer: git-send-email 2.5.0 In-Reply-To: <1439923587-3822-1-git-send-email-soeren+git@soeren-tempel.net> References: <1439923587-3822-1-git-send-email-soeren+git@soeren-tempel.net> 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/debootstrap/APKBUILD | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/main/debootstrap/APKBUILD b/main/debootstrap/APKBUILD index 787d95b..d8d2137 100644 --- a/main/debootstrap/APKBUILD +++ b/main/debootstrap/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Natanael Copa pkgname=debootstrap pkgver=1.0.72 -pkgrel=0 +pkgrel=1 pkgdesc="Debian/Ubuntu bootstrap scripts" url="http://packages.qa.debian.org/d/debootstrap.html" arch="all" @@ -10,7 +10,7 @@ license="GPL2" depends="dpkg tar" makedepends="" install="" -subpackages="" +subpackages="$pkgname-doc" source="http://ftp.de.debian.org/debian/pool/main/d/debootstrap/debootstrap_$pkgver.tar.gz pkgdetails.c makedev.sh" @@ -30,7 +30,10 @@ package() { devices.tar.gz || return 1 make DESTDIR="$pkgdir" install || return 1 - install -Dm755 pkgdetails "$pkgdir"/usr/lib/debootstrap/pkgdetails + install -Dm755 pkgdetails \ + "$pkgdir"/usr/lib/debootstrap/pkgdetails || return 1 + install -Dm644 $pkgname.8 \ + "$pkgdir"/usr/share/man/man8/$pkgname.8 || return 1 } md5sums="0cacf6e3bd8b566e921d2a326d6fd2bd debootstrap_1.0.72.tar.gz -- 2.5.0 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---