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 14AD6DC0C6B for ; Thu, 10 Sep 2015 15:02:53 +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 7B42BDC008F; Thu, 10 Sep 2015 15:02:52 +0000 (UTC) Received: from localhost (ip5f5ac94e.dynamic.kabel-deutschland.de [95.90.201.78]); by lithium.8pit.net (OpenSMTPD) with ESMTPSA id 0b9acb2c; TLS version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO; Thu, 10 Sep 2015 17:02:47 +0200 (CEST) From: =?UTF-8?q?S=C3=B6ren=20Tempel?= To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH 2/2] main/dhcpcd-dbus: use depends_dev Date: Thu, 10 Sep 2015 17:02:42 +0200 Message-Id: <1441897362-3425-2-git-send-email-soeren+git@soeren-tempel.net> X-Mailer: git-send-email 2.5.1 In-Reply-To: <1441897362-3425-1-git-send-email-soeren+git@soeren-tempel.net> References: <1441897362-3425-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/dhcpcd-dbus/APKBUILD | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/main/dhcpcd-dbus/APKBUILD b/main/dhcpcd-dbus/APKBUILD index da90f90..5e235f3 100644 --- a/main/dhcpcd-dbus/APKBUILD +++ b/main/dhcpcd-dbus/APKBUILD @@ -7,7 +7,8 @@ url="http://roy.marples.name/projects/dhcpcd-dbus" arch="all" license="BSD" depends="" -makedepends="dbus-dev" +depends_dev="dbus-dev" +makedepends="$makedepends" install= subpackages= source="http://roy.marples.name/downloads/dhcpcd/dhcpcd-dbus-$pkgver.tar.bz2 @@ -33,12 +34,12 @@ build() { --sysconfdir=/etc \ --libexecdir=/usr/lib/$pkgname \ || return 1 - make + make || return 1 } package() { cd "$_builddir" - make DESTDIR="$pkgdir" install + make DESTDIR="$pkgdir" install || return 1 } md5sums="4fd43b0f0ca7c0e65f95a0b2846b37b7 dhcpcd-dbus-0.6.0.tar.bz2 -- 2.5.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---