blob: 99eac0bc53efed5e0373d6b0095ec1ff3ba7bccd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Maintainer : hayao@fascode.net
# Contributer: nsz32 <nszabo2 at gmail dot com>, bittin
pkgname="xfce4-docklike-plugin"
pkgver="0.4.1"
pkgrel=1
pkgdesc='A modern, docklike, minimalist taskbar for XFCE'
arch=('i686' 'x86_64' "aarch64")
url='https://gitlab.xfce.org/panel-plugins/xfce4-docklike-plugin'
license=('GPL3')
depends=('xfce4-panel>=4.4' 'libwnck3' 'libxfce4ui' 'gtk3' 'cairo' 'glib2' "exo")
makedepends=('xfce4-dev-tools' 'intltool')
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 --prefix=/usr \
}
build() {
cd "${srcdir}/${dirname}"
make
}
package() {
cd "${srcdir}/${dirname}"
make DESTDIR="${pkgdir}" install
}
|