blob: 213f5b6217be1965ccb93df948f38a72b400bf46 (
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
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=xfdashboard
pkgver=0.7.4
pkgrel=0
pkgdesc="Maybe a Gnome shell like dashboard for Xfce"
url="http://goodies.xfce.org/projects/applications/xfdashboard/start"
arch="all"
license="GPL-2.0-or-later"
makedepends="clutter-dev xfconf-dev garcon-dev gtk+3.0-dev libwnck3-dev"
subpackages="$pkgname-dev $pkgname-lang"
source="http://archive.xfce.org/src/apps/${pkgname}/${pkgver%.*}/xfdashboard-${pkgver}.tar.bz2"
builddir="$srcdir"/xfdashboard-"$pkgver"
build() {
cd "$builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var
make
}
package() {
cd "$builddir"
make DESTDIR="$pkgdir" install
}
sha512sums="b4e6678f8c8c89e1ddbd5dffb83beebd8846053f93f456e6ab42572051bb382c6372a8356650386a433dd8662671cd6c5d01a1bd6552d8e08c2bf9aa6b54ef88 xfdashboard-0.7.4.tar.bz2"
|