Received: from mo4-p00-ob.smtp.rzone.de (mo4-p00-ob.smtp.rzone.de [81.169.146.161]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 850EF780E8A for ; Tue, 28 Dec 2021 17:05:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; t=1640710763; s=strato-dkim-0002; d=erduman.de; h=Message-Id:Date:Subject:Cc:To:From:Cc:Date:From:Subject:Sender; bh=kQkq1cGVLCUdBQhY1pnaO4U7Cbjas8ebUoBvgSe7m2s=; b=Jz571TxI9jnaHdI4t8fGqvlIFBRSYOZkwZm15vEEWxVBHW80cUlScSxUbZjz6TMC0d RZHk7kqniJRYWps9hL7yernh4nlJb+/HXf8m/UL0NdOgU/EvcP23g+6XyosaoDNDf7Id oKcPOhDEslIHbgAz9IwoaFPKGF5i0d9TW4WTwqld4cwhURJ4h1B2k+yY9IovRJmPkYmB j7HfvwRVKWM8n25yY3cSv00I/Q1z2eSktoTDjkA/qhgvh/URn+ekgLU94cAhvxPng+v0 ND66z6ZrvdNvpt71wgGXxMrwt8a4JXTSURZsfqXwMviXVERn2W7p9gM3tQKHm6gVpwCr dEnA== Authentication-Results: strato.com; dkim=none X-RZG-AUTH: ":JG0PdE6Ifu01fGcw5LkiijwwjO8uLyVE4CyKsZZvl8YCKfMJ9B+NlmsB5qzKkQkimDz2MQ==" X-RZG-CLASS-ID: mo00 Received: from 91f8903f3901.fritz.box by smtp.strato.de (RZmta 47.35.3 DYNA|AUTH) with ESMTPSA id v01391xBSGxNu4h (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256 bits)) (Client did not present a certificate); Tue, 28 Dec 2021 17:59:23 +0100 (CET) From: Hakan Erduman To: alpine-aports@lists.alpinelinux.org Cc: Hakan Erduman Subject: [PATCH] add: xfce4-hamster-plugin Date: Tue, 28 Dec 2021 16:58:24 +0000 Message-Id: <20211228165824.1445-1-hakan@erduman.de> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit --- testing/xfce4-hamster-plugin/APKBUILD | 29 +++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 testing/xfce4-hamster-plugin/APKBUILD diff --git a/testing/xfce4-hamster-plugin/APKBUILD b/testing/xfce4-hamster-plugin/APKBUILD new file mode 100644 index 0000000000..47c15b9ccf --- /dev/null +++ b/testing/xfce4-hamster-plugin/APKBUILD @@ -0,0 +1,29 @@ +# Maintainer: Hakan Erduman +pkgname=xfce4-hamster-plugin +pkgver=1.15 +pkgrel=0 +pkgdesc="A recreation of the gnome-shell hamster extension as a xfce4 panel plugin." +url="https://github.com/projecthamster/xfce4-hamster-plugin" +arch="all !mips !mips64" +license="GPL-2.0-or-later" +options="!check" # No test suite +makedepends="cmake libxfce4ui-dev libxfce4util-dev xfce4-panel-dev" +subpackages="$pkgname-lang" +source="$pkgname-$pkgver.tar.gz::https://github.com/projecthamster/xfce4-hamster-plugin/archive/refs/tags/v$pkgver.tar.gz" + +build() { + cmake \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=lib \ + -DCMAKE_BUILD_TYPE=None \ + . + make +} + +package() { + make install LIBDIR=lib DESTDIR="$pkgdir" +} + +sha512sums=" +ba26bf96d2d344569f0e98a4da7b6a1617d3b9c047e90debc2c84f858318e2e5862c68195899790ae7eaba77ab75c514e25ffa6fb7bf47e3fc70c82c8087f58e xfce4-hamster-plugin-1.15.tar.gz +" -- 2.34.1