From 70f4901b7b9482b3fdbfb5d29d8494a36e5ebfcc Mon Sep 17 00:00:00 2001 From: Nicolás Reynolds Date: Wed, 9 Oct 2013 12:01:25 -0300 Subject: multipath-tools --- pcr/multipath-tools-git/PKGBUILD | 44 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 pcr/multipath-tools-git/PKGBUILD diff --git a/pcr/multipath-tools-git/PKGBUILD b/pcr/multipath-tools-git/PKGBUILD new file mode 100644 index 000000000..d1bb4ac9b --- /dev/null +++ b/pcr/multipath-tools-git/PKGBUILD @@ -0,0 +1,44 @@ +# Maintainer: Miguel Revilla +# Contributor: Alexander Rødseth +# Contributor: Timothée Ravier + +pkgname=multipath-tools-git +pkgver=1295.81895af +pkgrel=1 +pkgdesc="Tools to drive the Device Mapper multipathing driver (contains kpartx)" +url="http://christophe.varoqui.free.fr/" +arch=('x86_64' 'i686') +license=('GPL2') +depends=('libaio' 'device-mapper') +makedepends=('git' 'setconf') +options=(!emptydirs) +source=("${pkgname}::git+http://git.opensvc.com/multipath-tools/.git") +md5sums=('SKIP') + +pkgver() { + cd ${pkgname} + echo $(git rev-list --count HEAD).$(git rev-parse --short HEAD) +} + +prepare() { + cd ${pkgname} + sed -i 's|/sbin|/usr/bin|g' Makefile.inc + sed -i 's|LIB=lib|LIB=usr/lib|g' Makefile.inc + sed -i 's|${prefix}/lib/udev|${prefix}/usr/lib/udev|g' Makefile.inc + sed -i 's|$(prefix)/lib/systemd/system|$(prefix)/usr/lib/systemd/system|g' Makefile.inc +} + +build() { + cd ${pkgname} + setconf Makefile.inc GZIP '/usr/bin/gzip -9 -c' + make +} + +package() { + cd ${pkgname} + make LIB="/usr/lib" DESTDIR="${pkgdir}" install + install -Dm644 COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/COPYING + cd "${pkgdir}"/usr/lib + rm libmpathpersist.so + ln -s libmpathpersist.so.0 libmpathpersist.so +} -- cgit v1.2.3 From 6eb2c51b1fba9d9e008d8a093b970e064c458c4a Mon Sep 17 00:00:00 2001 From: coadde - Public Network Date: Wed, 9 Oct 2013 14:48:12 -0200 Subject: evolution-data-server-nonprism: fixing deps --- nonprism/evolution-data-server-nonprism/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nonprism/evolution-data-server-nonprism/PKGBUILD b/nonprism/evolution-data-server-nonprism/PKGBUILD index 5d4cc25ea..df988e12b 100644 --- a/nonprism/evolution-data-server-nonprism/PKGBUILD +++ b/nonprism/evolution-data-server-nonprism/PKGBUILD @@ -5,7 +5,7 @@ pkgver=3.10.0 pkgrel=1 pkgdesc="Centralized access to appointments and contacts, without libgdata support" arch=(i686 x86_64) -depends=(gnome-online-accounts nss krb5 libgweather libical db) +depends=(gnome-online-accounts nss krb5 libgweather libical db gcr) makedepends=(intltool gperf gobject-introspection vala python2) options=('!libtool') install=$_pkgname.install -- cgit v1.2.3 From 46ea1956dc5b3444878922a019f8c7fb5f1fd889 Mon Sep 17 00:00:00 2001 From: coadde - Public Network Date: Wed, 9 Oct 2013 16:23:00 -0200 Subject: gnome-online-accounts-nonprism: fixing configure flags --- nonprism/gnome-online-accounts-nonprism/PKGBUILD | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/nonprism/gnome-online-accounts-nonprism/PKGBUILD b/nonprism/gnome-online-accounts-nonprism/PKGBUILD index d7f0c88fc..39bb599d2 100644 --- a/nonprism/gnome-online-accounts-nonprism/PKGBUILD +++ b/nonprism/gnome-online-accounts-nonprism/PKGBUILD @@ -22,15 +22,18 @@ sha256sums=('bba85366632cf5ce777b6889eab505d98d7593c37f7859a312dc57dde05a0feb') build() { cd $_pkgname-$pkgver - ./configure --prefix=/usr --libexecdir=/usr/lib/$_pkgname + ./configure --prefix=/usr --libexecdir=/usr/lib/$_pkgname \ + --disable-exchange \ --disable-google \ - --enable-owncloud \ --disable-facebook \ - --disable-windows-live \ - --disable-exchange \ --disable-flickr \ --enable-imap-smtp \ - --disable-kerberos + --disable-kerberos \ + --enable-owncloud \ + --enable-telepathy \ + --disable-twitter \ + --disable-windows-live \ + --disable-yahoo make } -- cgit v1.2.3