summaryrefslogtreecommitdiff
path: root/extra/garcon/PKGBUILD
blob: f8990035f95adbf567923d65ef4e4e73e6c7c8cc (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
# $Id: PKGBUILD 127908 2011-06-19 16:23:50Z andyrtr $
# Maintainer: AndyRTR <andyrtr@archlinux.org>
# Contributor: Xavier Devlamynck <magicrhesus@ouranos.be> 

pkgname=garcon
pkgver=0.1.8
pkgrel=1
pkgdesc="implementation of the freedesktop.org menu specification"
arch=('i686' 'x86_64' 'mips64el')
license=('LGPL')
url="http://wiki.xfce.org/dev/garcon"
groups=('xfce4')
depends=('glib2') # 'perl')
makedepends=('pkgconfig' 'intltool' 'xfce4-dev-tools>=4.7.4')
conflicts=('garcon-git')
replaces=('libxfce4menu')
options=('!libtool' '!makeflags')
source=(http://archive.xfce.org/src/libs/garcon/0.1/garcon-${pkgver}.tar.bz2)
md5sums=('18fbf523ed2865dfaccdfb40b4b20b05')

build() {
  cd ${srcdir}/garcon-${pkgver}
  ./configure --prefix=/usr \
	--sysconfdir=/etc \
	--libexecdir=/usr/lib \
	--localstatedir=/var \
	--disable-static \
	--disable-debug
  make
}

package() {
  cd ${srcdir}/garcon-${pkgver}
  make DESTDIR=${pkgdir} install
}