summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: ab816d6fbc8a44a5d78a36c450d97937bc6dd73b (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
# Maintainer : hayao@fascode.net
# Contributer: nsz32 <nszabo2 at gmail dot com>

pkgname="xfce4-docklike-plugin"
pkgver="0.4.0"
pkgrel=1
pkgdesc='A modern, docklike, minimalist taskbar for XFCE'
arch=('i686' 'x86_64')
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
}

build() {
	cd "${srcdir}/${dirname}"
	make
}

package() {
	cd "${srcdir}/${dirname}"
	make DESTDIR="${pkgdir}" install
}