summaryrefslogtreecommitdiff
path: root/extra/garcon/PKGBUILD
blob: ce6175f9604805bbca2df64887518a3f1f793136 (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 119882 2011-04-16 11:21:52Z andyrtr $
# Maintainer: AndyRTR <andyrtr@archlinux.org>
# Contributor: Xavier Devlamynck <magicrhesus@ouranos.be> 

pkgname=garcon
pkgver=0.1.7
pkgrel=1
pkgdesc="implementation of the freedesktop.org menu specification"
arch=('i686' 'x86_64')
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')
source=(http://archive.xfce.org/src/libs/garcon/0.1/garcon-${pkgver}.tar.bz2)
md5sums=('8990668e4f2fecffe124f613b6e1e01f')

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
}