diff options
Diffstat (limited to 'extra/cheese/PKGBUILD')
-rw-r--r-- | extra/cheese/PKGBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/extra/cheese/PKGBUILD b/extra/cheese/PKGBUILD new file mode 100644 index 000000000..bb1aade2f --- /dev/null +++ b/extra/cheese/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 91839 2010-09-28 08:08:33Z jgc $ +# Maintainer: Jan de Groot <jgc@archlinux.org> + +pkgname=cheese +pkgver=2.32.0 +pkgrel=1 +pkgdesc="Use your webcam to take photos and videos, apply fancy special effects and share the fun with others" +arch=(i686 x86_64) +license=('GPL') +depends=('gnome-desktop>=2.32.0' 'gstreamer0.10-base-plugins>=0.10.30' 'gstreamer0.10-good-plugins>=0.10.24' 'librsvg>=2.32.0' 'gnome-icon-theme>=2.31.0' 'libcanberra>=0.25') +makedepends=('pkgconfig' 'gnome-doc-utils>=0.20.1' 'intltool') +groups=('gnome-extra') +options=('!libtool' '!emptydirs') +url="http://www.gnome.org/projects/cheese/" +install=cheese.install +source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.32/${pkgname}-${pkgver}.tar.bz2) +sha256sums=('8debc47113d9889247f411d256a8eca0d8da49e5ab5909c200923945b8d5e087') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr --sysconfdir=/etc \ + --localstatedir=/var --libexecdir=/usr/lib \ + --disable-scrollkeeper --disable-static + make + make -j1 GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="${pkgdir}" install + + install -m755 -d "${pkgdir}/usr/share/gconf/schemas" + gconf-merge-schema "${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas" --domain cheese ${pkgdir}/etc/gconf/schemas/*.schemas + rm -f ${pkgdir}/etc/gconf/schemas/*.schemas +} |