Received: from knopi.disroot.org (knopi.disroot.org [178.21.23.139]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 30DCE781AF9 for <~alpine/aports@lists.alpinelinux.org>; Mon, 16 Sep 2019 11:49:36 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 3CC1E22ACE for <~alpine/aports@lists.alpinelinux.org>; Mon, 16 Sep 2019 13:43:34 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 5dpVCWLx8SS2; Mon, 16 Sep 2019 13:43:32 +0200 (CEST) From: Bart Ribbers DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1568634212; bh=esRdicqJOqVLbas7UkOiFDOZZLgfvW/Oloa1pVpfK7c=; h=From:To:Cc:Subject:Date; b=aumdf6/41Zzn4HPVfp1rjyYPPlwqp1QE2bEDpCmF1EvIQ1VBCq9JLGUCALTLyNN/e JUyOMyHsMKQ62U7k/ACk94JD4gXjAp0NnV24+TI8jcQOZck3Gw2DEFQZMrdPYvRVVC yXPhRsdtMnhBLIlHngF10kHuqsYQ+7KJXUmimwx7DYHZuznwXXqlxnntaXKUg8uyxc FaQ1fHkukNWF6eWGH4rtHWlIX5p8repdzNHfUPvJOJvXRvK/kENMnSP+9UsBMIOcSd FF1bO8DNhmcJ3xWrf+Lyj4nCwoGcI6Uka6jTEXTlpLYC98Duw/ildsonHMeRwIJeAg WyjL0DnMvLMmw== To: ~alpine/aports@lists.alpinelinux.org Cc: Bart Ribbers Subject: [PATCH 1/5] testing/plymouth-kcm: new aport Date: Mon, 16 Sep 2019 13:43:15 +0200 Message-Id: <20190916114319.4403-1-bribbers@disroot.org> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit --- testing/plymouth-kcm/APKBUILD | 41 +++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 testing/plymouth-kcm/APKBUILD diff --git a/testing/plymouth-kcm/APKBUILD b/testing/plymouth-kcm/APKBUILD new file mode 100644 index 0000000000..24d038fc3f --- /dev/null +++ b/testing/plymouth-kcm/APKBUILD @@ -0,0 +1,41 @@ +# Contributor: Bart Ribbers +# Maintainer: Bart Ribbers +pkgname=plymouth-kcm +pkgver=5.16.5 +pkgrel=0 +arch="all" +url="https://cgit.kde.org/plymouth-kcm.git" +pkgdesc="KCM to manage the Plymouth (Boot) theme " +license="GPL-2.0-or-later" +depends="plymouth" +makedepends="extra-cmake-modules qt5-qtbase-dev karchive-dev knewstuff-dev kio-dev kdeclarative-dev ki18n-dev kconfig-dev kconfigwidgets-dev plymouth-dev kcmutils" +source="https://download.kde.org/stable/plasma/$pkgver/plymouth-kcm-$pkgver.tar.xz" +subpackages="$pkgname-lang" +options="!check" # No tests + +prepare() { + default_prepare + + mkdir "$builddir"/build +} + +build() { + cd "$builddir"/build + cmake "$builddir" \ + -DCMAKE_BUILD_TYPE=RelWithDebInfo \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=lib + make +} + +check() { + cd "$builddir"/build + CTEST_OUTPUT_ON_FAILURE=TRUE ctest +} + +package() { + cd "$builddir"/build + DESTDIR="$pkgdir" make install +} + +sha512sums="9544cd44cddb5736b38be649e61bf0ed0c7553ac0fa8e7de978e297cfa3d0046339832937ee8ca2e83f610b5516b90c512ebaeb20a9c66c7ea47fb93c1d3fd36 plymouth-kcm-5.16.5.tar.xz" -- 2.21.0