diff options
Diffstat (limited to 'extra/xfce4-mount-plugin/PKGBUILD')
-rw-r--r-- | extra/xfce4-mount-plugin/PKGBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/extra/xfce4-mount-plugin/PKGBUILD b/extra/xfce4-mount-plugin/PKGBUILD new file mode 100644 index 000000000..72cd37aca --- /dev/null +++ b/extra/xfce4-mount-plugin/PKGBUILD @@ -0,0 +1,33 @@ +# $Id: PKGBUILD 105777 2011-01-11 18:27:59Z andyrtr $ +# Maintainer: AndyRTR <andyrtr@archlinux.org> +# Contributor: Tobias Kieslich <tobias (at) archlinux.org> + +pkgname=xfce4-mount-plugin +pkgver=0.5.5 +pkgrel=1 +pkgdesc="plugin for the Xfce4 panel to mount and unmount volumes" +arch=('i686' 'x86_64') +license=('GPL2') +url="http://xfce-goodies.berlios.de/" +groups=('xfce4-goodies') +depends=('xfce4-panel' 'libxfcegui4' 'hicolor-icon-theme') +makedepends=('intltool') +install=${pkgname}.install +source=(http://archive.xfce.org/src/panel-plugins/${pkgname}/0.5/${pkgname}-${pkgver}.tar.bz2) +md5sums=('1d237468fe23e4e8c29195d9b99c4c5d') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --libexecdir=/usr/lib \ + --localstatedir=/var \ + --disable-static \ + --disable-debug + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR=${pkgdir} install +} |