mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
30 lines
1.1 KiB
Bash
30 lines
1.1 KiB
Bash
|
# $Id: PKGBUILD 38547 2009-05-08 22:11:11Z jgc $
|
||
|
# Maintainer: Eduardo Romero <eduardo@archlinux.org>
|
||
|
# Contributor: Tor Krill <tor@krill.nu>
|
||
|
|
||
|
pkgname=nautilus-sendto
|
||
|
pkgver=1.1.5
|
||
|
pkgrel=1
|
||
|
pkgdesc="Nautilus context menu for sending files."
|
||
|
arch=(i686 x86_64)
|
||
|
url="http://download.gnome.org/sources/nautilus-sendto/"
|
||
|
license=('GPL')
|
||
|
depends=('evolution-data-server>=2.26.1.1' 'nautilus>=2.26.2')
|
||
|
makedepends=('pidgin' 'gajim' 'gettext' 'intltool')
|
||
|
options=('!libtool' '!emptydirs')
|
||
|
install=nautilus-sendto.install
|
||
|
source=(http://ftp.gnome.org/pub/GNOME/sources/nautilus-sendto/1.1/${pkgname}-${pkgver}.tar.bz2)
|
||
|
md5sums=('8a5b342850bb84b63c7df033ef478654')
|
||
|
|
||
|
build() {
|
||
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||
|
./configure --prefix=/usr --sysconfdir=/etc \
|
||
|
--localstatedir=/var || 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 nautilus-sendto ${pkgdir}/etc/gconf/schemas/*.schemas || return 1
|
||
|
rm -f ${pkgdir}/etc/gconf/schemas/*.schemas
|
||
|
}
|