blob: 1ade1dcdc2cacaf33c9c07876b0d9343d9e4f36d (
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
|
# Maintainer: nsz32 <nszabo2 at gmail dot com>
pkgname=xfce4-docklike-plugin-git
pkgver=20200904
pkgrel=1
pkgdesc='A modern, docklike, minimalist taskbar for XFCE'
arch=('i686' 'x86_64')
url='https://github.com/nsz32/docklike-plugin'
license=('GPL3')
depends=('xfce4-panel>=4.4' 'libwnck3' 'libxfce4ui' 'gtk3' 'cairo' 'glib2')
makedepends=('git' 'xfce4-dev-tools' 'intltool')
source=(git://github.com/nsz32/docklike-plugin)
sha512sums=('SKIP')
pkgver() {
cd "${srcdir}/docklike-plugin"
git log -1 --format="%cd" --date=short | sed 's|-||g'
}
prepare() {
cd "${srcdir}/docklike-plugin"
./autogen.sh
}
build() {
cd "${srcdir}/docklike-plugin"
make
}
package() {
cd "${srcdir}/docklike-plugin"
make DESTDIR="${pkgdir}" install
}
|