mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
30 lines
1.1 KiB
Bash
30 lines
1.1 KiB
Bash
|
# $Id: PKGBUILD 2392 2008-06-01 19:38:25Z jgc $
|
||
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
||
|
|
||
|
pkgname=mousetweaks
|
||
|
pkgver=2.26.3
|
||
|
pkgrel=1
|
||
|
pkgdesc="Mouse accessibility enhancements for the GNOME desktop"
|
||
|
arch=(i686 x86_64)
|
||
|
license=('GPL3' 'FDL')
|
||
|
depends=('gnome-panel>=2.26.3' 'at-spi>=1.26.0')
|
||
|
makedepends=('pkgconfig' 'gnome-doc-utils>=0.16.1' 'intltool')
|
||
|
groups=('gnome-extra')
|
||
|
options=('!libtool' '!emptydirs')
|
||
|
url="http://www.gnome.org"
|
||
|
install=mousetweaks.install
|
||
|
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.26/${pkgname}-${pkgver}.tar.bz2)
|
||
|
md5sums=('e4d5941b555de97c8880ea8b01310776')
|
||
|
|
||
|
build() {
|
||
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||
|
./configure --prefix=/usr --sysconfdir=/etc \
|
||
|
--localstatedir=/var --disable-scrollkeeper || return 1
|
||
|
make || return 1
|
||
|
make -j1 GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="${pkgdir}" install || return 1
|
||
|
|
||
|
install -m755 -d "${pkgdir}/usr/share/gconf/schemas"
|
||
|
gconf-merge-schema "${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas" --domain mousetweaks ${pkgdir}/etc/gconf/schemas/*.schemas || return 1
|
||
|
rm -f ${pkgdir}/etc/gconf/schemas/*.schemas
|
||
|
}
|