X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mail.infogroup.kiev.ua (tera.infogroup.kiev.ua [195.144.25.26]) by lists.alpinelinux.org (Postfix) with ESMTP id BB8415C43EC for ; Mon, 27 Feb 2017 16:26:33 +0000 (GMT) Received: from ost.org.ua ([195.144.25.230] helo=alpine.ost.org.ua) by mail.infogroup.kiev.ua with esmtpsa (TLSv1:DHE-RSA-AES256-SHA:256) (Exim 4.80.1) (envelope-from ) id 1ciO88-0003zS-KQ for alpine-aports@lists.alpinelinux.org; Mon, 27 Feb 2017 18:26:32 +0200 From: Valery Kartel To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH v2] testing/wayland-protocols: remove previously added -dev sub Date: Mon, 27 Feb 2017 18:26:32 +0200 Message-Id: <20170227162632.28073-1-valery.kartel@gmail.com> X-Mailer: git-send-email 2.11.1 Sender: droid@infogroup.kiev.ua X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: -- provides wayland-protocols-dev add dummy check() --- v1 -> v2: remove -dev completely because the whole package is for development only --- testing/wayland-protocols/APKBUILD | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/testing/wayland-protocols/APKBUILD b/testing/wayland-protocols/APKBUILD index 31625e5842..4998c58f80 100644 --- a/testing/wayland-protocols/APKBUILD +++ b/testing/wayland-protocols/APKBUILD @@ -2,14 +2,15 @@ # Maintainer: Valery Kartel pkgname=wayland-protocols pkgver=1.7 -pkgrel=1 +pkgrel=2 pkgdesc="Protocols and protocol extensions complementing the Wayland core protocol" url="http://wayland.freedesktop.org" arch="noarch" license="MIT" -depends="" +depends= +provides="$pkgname-dev" makedepends="wayland-dev" -subpackages="$pkgname-dev" +subpackages= source="https://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz" builddir="$srcdir/$pkgname-$pkgver" @@ -26,17 +27,13 @@ build() { make || return 1 } +check() { + : +} + package() { make DESTDIR="$pkgdir" \ -C "$builddir" install || return 1 } -dev() { - mkdir -p "$subpkgdir"/usr/share || return 1 - mv "$pkgdir"/usr/share/pkgconfig \ - "$subpkgdir"/usr/share || return 1 - - default_dev -} - sha512sums="291a3226cc538de3b81bdffa5de513b305a946bfc3481e21c254fcc6a023e0cf2ff1869509c7ae193da02460f1d4a3c5cd5f1ca13b2550886acffcc636fb30d2 wayland-protocols-1.7.tar.xz" -- 2.11.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---