diff options
author | root <root@rshg054.dnsready.net> | 2013-04-09 00:05:27 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-04-09 00:05:27 -0700 |
commit | 987f836820eae061f40608b4ee1b6a14ecced3cc (patch) | |
tree | d28e524877b41fb49ccb7b2f99b36db2f9c90e89 /community/gnome-phone-manager/PKGBUILD | |
parent | ce26b1905ac40cd9389e1c9f364a2ccd8f4ec13c (diff) |
Tue Apr 9 00:05:27 PDT 2013
Diffstat (limited to 'community/gnome-phone-manager/PKGBUILD')
-rw-r--r-- | community/gnome-phone-manager/PKGBUILD | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/community/gnome-phone-manager/PKGBUILD b/community/gnome-phone-manager/PKGBUILD new file mode 100644 index 000000000..a84445874 --- /dev/null +++ b/community/gnome-phone-manager/PKGBUILD @@ -0,0 +1,35 @@ +# $Id: PKGBUILD 87900 2013-04-08 14:45:13Z heftig $ +# Maintainer: Roman Kyrylych <roman@archlinux.org> + +pkgname=gnome-phone-manager +pkgver=0.68 +pkgrel=3 +pkgdesc="Control your mobile phone from your GNOME desktop." +arch=('i686' 'x86_64') +url="http://live.gnome.org/PhoneManager" +license=('GPL') +depends=('evolution-data-server' 'gnokii' 'gnome-bluetooth' 'gnome-icon-theme' 'libcanberra' 'gconf') +makedepends=('intltool') +options=('!emptydirs' '!libtool') +install=gnome-phone-manager.install +source=(ftp://ftp.archlinux.org/other/gnome-phone-manager/gnome-phone-manager-0.68-git20121019.tar.xz + gnome-phone-manager-0.68-eds.patch) +sha256sums=('885dfa80989c633a5ae8b118c9b7c903e18e44f0e9fc89e6a9bae05da87c9b15' + '98d5c2d3034081eebbaa0dac85f53dcc40c8970114f5711aff8c37bab2931a66') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + patch -p1 -i ../gnome-phone-manager-0.68-eds.patch + ./configure --prefix=/usr --sysconfdir=/etc \ + --localstatedir=/var --disable-static + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install + + install -m755 -d "${pkgdir}/usr/share/gconf/schemas" + gconf-merge-schema "${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas" --domain gnome-phone-manager "${pkgdir}"/etc/gconf/schemas/*.schemas + rm -f "${pkgdir}"/etc/gconf/schemas/*.schemas +} |