mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
26 lines
929 B
Bash
26 lines
929 B
Bash
# $Id: PKGBUILD 30697 2009-03-21 12:09:32Z allan $
|
|
# Maintainer: tobias <tobias funnychar archlinux.org>
|
|
# Contributor: Tobias Kieslich <tobias (at) archlinux.org>
|
|
|
|
pkgname=xfce4-xkb-plugin
|
|
pkgver=0.5.3.2
|
|
pkgrel=1
|
|
pkgdesc="plugin to switch keyboard layouts for the Xfce4 panel"
|
|
arch=(i686 x86_64)
|
|
license=('custom')
|
|
url="http://xfce-goodies.berlios.de/"
|
|
groups=('xfce4-goodies')
|
|
depends=('xfce4-panel>=4.5.99.1' 'libxklavier' 'librsvg')
|
|
makedepends=('pkgconfig' 'perlxml' 'intltool')
|
|
options=('!libtool')
|
|
source=(http://goodies.xfce.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('235038face497d92b1b8f540ec2d270c')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
|
|
--localstatedir=/var --disable-static
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
|
|
}
|