diff options
author | root <root@rshg054.dnsready.net> | 2012-03-08 00:01:27 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-03-08 00:01:27 +0000 |
commit | 718c8e57ef26498cff228de3de92bf5c8a3f6343 (patch) | |
tree | bff46acd12c91eafe51a7feebb7f840e9834cc0e /gnome-unstable/udisks2 | |
parent | 5a680f7689b01b4b7a0bfade1a6c1f659f8cbed4 (diff) |
Thu Mar 8 00:01:27 UTC 2012
Diffstat (limited to 'gnome-unstable/udisks2')
-rw-r--r-- | gnome-unstable/udisks2/PKGBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnome-unstable/udisks2/PKGBUILD b/gnome-unstable/udisks2/PKGBUILD new file mode 100644 index 000000000..0bbf3c109 --- /dev/null +++ b/gnome-unstable/udisks2/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 152271 2012-03-06 12:56:19Z ibiru $ +# Maintainer: Ionut Biru <ibiru@archlinux.org> + +pkgname=udisks2 +pkgver=1.93.0 +pkgrel=1 +pkgdesc="Disk Management Service, version 2" +arch=('i686' 'x86_64') +url="http://www.freedesktop.org/wiki/Software/udisks" +license=('GPL2') +depends=('glib2' 'udev' 'polkit' 'libatasmart' 'eject') +makedepends=('intltool' 'docbook-xsl' 'gobject-introspection') +optdepends=('parted: partition management' + 'gptfdisk: GUID partition table support') +options=(!libtool) +source=(http://udisks.freedesktop.org/releases/udisks-$pkgver.tar.bz2) +sha256sums=('e2264d06bbf5399d243b0f91628881fa1d95d1a512b2af26f5ab074caf6327d7') + +build() { + cd "udisks-$pkgver" + ./configure --prefix=/usr --sysconfdir=/etc \ + --with-systemdsystemunitdir=/lib/systemd/system \ + --localstatedir=/var --disable-static + make +} + +package() { + cd "udisks-$pkgver" + make DESTDIR="$pkgdir" install +} |