summaryrefslogtreecommitdiff
path: root/pcr/bamf/PKGBUILD
blob: 8d0f0439d4a6adabb18dc5ca4eb4766f96f1d155 (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
# Maintainer: Balló György <ballogyor+arch at gmail dot com>

pkgname=bamf
pkgver=0.3.6
pkgrel=1
pkgdesc="Removes the headache of applications matching into a simple DBus daemon and c wrapper library"
arch=('i686' 'x86_64')
url="https://launchpad.net/bamf"
license=('GPL')
depends=('dbus-glib' 'libwnck3' 'libgtop')
makedepends=('gobject-introspection' 'vala')
options=('!libtool')
source=(http://launchpad.net/$pkgname/${pkgver%.*}/$pkgver/+download/$pkgname-$pkgver.tar.gz
        fix-current-desktop.patch)
md5sums=('56b0b0ac2d3f2a0401db268c78cc8527'
         '406dfbb06f78a325515186be83523b1b')

build() {
  cd "$srcdir/$pkgname-$pkgver"

  # Fix build
  sed -i 's/ -Werror//' configure{,.in}
  sed -i 's/--c-include/--include/' lib/libbamf/Makefile.in

  # Fix desktop file table if XDG_CURRENT_DESKTOP environment variable is not available
  patch -Np1 -i "$srcdir/fix-current-desktop.patch"

  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libexecdir=/usr/lib/$pkgname \
              --disable-static --disable-webapps
  make
}

package() {
  cd "$srcdir/$pkgbase-$pkgver"

  make DESTDIR="$pkgdir" install
}