mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
28 lines
938 B
Bash
28 lines
938 B
Bash
# $Id: PKGBUILD 42489 2009-06-14 20:37:02Z andyrtr $
|
|
# Maintainer: tobias <tobias funnychar archlinux.org>
|
|
# Contributor: Tobias Kieslich <tobias (at) archlinux.org>
|
|
|
|
pkgname=xfce4-screenshooter
|
|
pkgver=1.6.0
|
|
pkgrel=1
|
|
pkgdesc="plugin that makes screenshots for the Xfce4 panel"
|
|
arch=(i686 x86_64)
|
|
license=('GPL2')
|
|
url="http://xfce-goodies.berlios.de/"
|
|
groups=('xfce4-goodies')
|
|
depends=('xfce4-panel' 'hicolor-icon-theme')
|
|
makedepends=('pkgconfig' 'intltool')
|
|
install=${pkgname}.install
|
|
options=('!libtool')
|
|
source=(http://goodies.xfce.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
|
conflicts=('xfce4-screenshooter-plugin')
|
|
replaces=('xfce4-screenshooter-plugin')
|
|
md5sums=('331750879b966eec639eb3fe3045cb16')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
|
|
--localstatedir=/var --disable-static
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
}
|