mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
26 lines
825 B
Bash
26 lines
825 B
Bash
# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
|
|
# Maintainer: aurelien <aurelien@archlinux.org>
|
|
# Contributor: Tobias Kieslich <tobias (at) archlinux.org>
|
|
|
|
pkgname=xfce4-mount-plugin
|
|
pkgver=0.5.4
|
|
pkgrel=2
|
|
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')
|
|
makedepends=('pkgconfig')
|
|
options=(!libtool)
|
|
install=${pkgname}.install
|
|
source=(http://goodies.xfce.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('06ac87a09993af4624776022be9ffb13')
|
|
|
|
build() {
|
|
cd ${startdir}/src/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib/xfce4 \
|
|
--localstatedir=/var --disable-static
|
|
make || return 1
|
|
make DESTDIR=${startdir}/pkg install
|
|
}
|