blob: abb6167fb1c5356ffacf9c65fd09f07815da108f (
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
42
43
44
45
|
# Maintainer: Limao Luo <luolimao+AUR@gmail.com>
#
# (Added from libxfce4util package)
# Contributor: Evangelos Foutras <evangelos@foutrelis.com>
# Contributor: tobias <tobias@archlinux.org>
pkgname=libxfce4util-git
pkgver=4.15.2.r2.g2fe428a
pkgrel=1
pkgdesc="Basic utility non-GUI functions for Xfce"
arch=(i686 x86_64)
url=http://git.xfce.org/xfce/${pkgname%-*}/tree/README
license=(GPL2)
groups=(xfce4-git)
depends=(glib2)
makedepends=(git xfce4-dev-tools gobject-introspection vala)
provides=(${pkgname%-*}=$pkgver%%+*)
conflicts=(${pkgname%-*})
source=($pkgname::git+https://gitlab.xfce.org/xfce/${pkgname%-*})
sha256sums=('SKIP')
sha512sums=('SKIP')
pkgver() {
cd $pkgname/
git describe | sed 's/^libxfce4util-//;s/-/.r/;s/-/./g'
}
build() {
cd $pkgname/
./autogen.sh \
--prefix=/usr \
--sysconfdir=/etc \
--sbindir=/usr/bin \
--libexecdir=/usr/lib \
--localstatedir=/var \
--disable-static \
--enable-gtk-doc \
--disable-debug
make
}
package() {
make -C $pkgname DESTDIR="$pkgdir" install
rm -rf "$pkgdir"/usr/share/gtk-doc/
}
|