diff options
author | 2023-01-04 15:21:06 +0600 | |
---|---|---|
committer | 2023-01-04 15:21:06 +0600 | |
commit | 62f27648c4df89e0979efbf8b571a80bdde58222 (patch) | |
tree | 509e81bc01cf9a4ed43b91dff2a43c80fb14a2e9 | |
parent | 81fbd1d0f3e3353355b771a8c48a46b1e31fa448 (diff) | |
download | patches-62f27648c4df89e0979efbf8b571a80bdde58222.tar.gz patches-62f27648c4df89e0979efbf8b571a80bdde58222.zip |
xfce4-docklike-plugin: Initial release, v0.4.0
Signed-off-by: Mubashshir <ahmubashshir@gmail.com>
-rw-r--r-- | pkgbuilds/xfce4-docklike-plugin/.SRCINFO | 32 | ||||
-rw-r--r-- | pkgbuilds/xfce4-docklike-plugin/.gitignore | 3 | ||||
-rw-r--r-- | pkgbuilds/xfce4-docklike-plugin/PKGBUILD | 42 |
3 files changed, 77 insertions, 0 deletions
diff --git a/pkgbuilds/xfce4-docklike-plugin/.SRCINFO b/pkgbuilds/xfce4-docklike-plugin/.SRCINFO new file mode 100644 index 0000000..e7fbe1d --- /dev/null +++ b/pkgbuilds/xfce4-docklike-plugin/.SRCINFO @@ -0,0 +1,32 @@ +pkgbase = xfce4-docklike-plugin + pkgdesc = A modern, docklike, minimalist taskbar for XFCE + pkgver = 0.4.0 + pkgrel = 2 + url = https://gitlab.xfce.org/panel-plugins/xfce4-docklike-plugin + arch = i686 + arch = x86_64 + arch = aarch64 + arch = arm64 + license = GPL3 + makedepends = xfce4-dev-tools + makedepends = intltool + makedepends = libtool + makedepends = libwnck-3-dev + makedepends = libxfce4ui-2-dev + makedepends = libexo-2-dev + makedepends = libglib2.0-dev + makedepends = libcairo2-dev + makedepends = libgtk-3-dev + makedepends = libxfce4panel-2.0-dev + depends = xfce4-panel>=4.4 + depends = libgtk-3-0 + depends = libwnck-3-0 + depends = libxfce4ui-2-0 + depends = libexo-2-0 + depends = libcairo2 + conflicts = xfce4-docklike-plugin-git + conflicts = xfce4-docklike-plugin-ng-git + source = https://gitlab.xfce.org/panel-plugins/xfce4-docklike-plugin/-/archive/xfce4-docklike-plugin-0.4.0/xfce4-docklike-plugin-xfce4-docklike-plugin-0.4.0.tar.gz + sha512sums = SKIP + +pkgname = xfce4-docklike-plugin diff --git a/pkgbuilds/xfce4-docklike-plugin/.gitignore b/pkgbuilds/xfce4-docklike-plugin/.gitignore new file mode 100644 index 0000000..1d65adf --- /dev/null +++ b/pkgbuilds/xfce4-docklike-plugin/.gitignore @@ -0,0 +1,3 @@ +* +!PKGBUILD +!.SRCINFO diff --git a/pkgbuilds/xfce4-docklike-plugin/PKGBUILD b/pkgbuilds/xfce4-docklike-plugin/PKGBUILD new file mode 100644 index 0000000..33ecd92 --- /dev/null +++ b/pkgbuilds/xfce4-docklike-plugin/PKGBUILD @@ -0,0 +1,42 @@ +# Maintainer: Mubashshir <ahmubashshir@gmail.com> +# Contributer: nsz32 <nszabo2 at gmail dot com> +# shellcheck shell=bash disable=SC2034,SC2154,SC2164 +pkgname="xfce4-docklike-plugin" +pkgver="0.4.0" +pkgrel=2 +pkgdesc='A modern, docklike, minimalist taskbar for XFCE' +arch=('i686' 'x86_64' "aarch64" "arm64") +url='https://gitlab.xfce.org/panel-plugins/xfce4-docklike-plugin' +license=('GPL3') +depends=('xfce4-panel>=4.4' 'libgtk-3-0' 'libwnck-3-0' 'libxfce4ui-2-0' 'libexo-2-0' 'libcairo2') +makedepends=( + 'xfce4-dev-tools' + 'intltool' 'libtool' + libwnck-3-dev libxfce4ui-2-dev + libexo-2-dev libglib2.0-dev + libcairo2-dev libgtk-3-dev + libxfce4panel-2.0-dev) +conflicts=("${pkgname}-git" "${pkgname}-ng-git") +dirname="xfce4-docklike-plugin-xfce4-docklike-plugin-${pkgver}" + +source=( + #"https://github.com/davekeogh/xfce4-docklike-plugin/archive/v${pkgver}.zip" + "${url}/-/archive/xfce4-docklike-plugin-${pkgver}/xfce4-docklike-plugin-xfce4-docklike-plugin-${pkgver}.tar.gz" +) + +sha512sums=('SKIP') + +prepare() { + cd "${srcdir}/${dirname}" + ./autogen.sh +} + +build() { + cd "${srcdir}/${dirname}" + make +} + +package() { + cd "${srcdir}/${dirname}" + make DESTDIR="${pkgdir}" install +} |