mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
30 lines
1.2 KiB
Bash
30 lines
1.2 KiB
Bash
# $Id: PKGBUILD 36199 2009-04-20 18:16:06Z jgc $
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
# Contributor: Kritoke <typeolinux@yahoo.com>
|
|
|
|
pkgname=quick-lounge-applet
|
|
pkgver=2.14.0
|
|
pkgrel=1
|
|
pkgdesc="A GNOME2 applet that you can organize your preferred applications in a single place"
|
|
arch=(i686 x86_64)
|
|
license=('GPL')
|
|
depends=('gnome-panel>=2.26.0')
|
|
makedepends=('pkgconfig' 'gnome-doc-utils>=0.16')
|
|
url="http://quick-lounge.sourceforge.net/"
|
|
options=(!emptydirs)
|
|
install=quick-lounge.install
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.14/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('f3fe457f145c74d42002930e6c91ad83')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --sysconfdir=/etc \
|
|
--libexecdir=/usr/lib/quick-lounge-applet \
|
|
--localstatedir=/var --disable-scrollkeeper || return 1
|
|
make || return 1
|
|
make 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 quick-lounge-applet ${pkgdir}/etc/gconf/schemas/*.schemas
|
|
rm -f ${pkgdir}/etc/gconf/schemas/*.schemas
|
|
}
|