mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
28 lines
904 B
Bash
28 lines
904 B
Bash
|
# $Id: PKGBUILD 51085 2009-09-04 18:57:49Z andyrtr $
|
||
|
# Maintainer: tobias <tobias at archlinux.org>
|
||
|
# Maintainer: Andreas Radke <andyrtr at archlinux.org>
|
||
|
# Contributor: Ben Mazer <contrasutra@myrealbox.com>
|
||
|
|
||
|
pkgname=xfce4-notes-plugin
|
||
|
pkgver=1.7.1
|
||
|
pkgrel=1
|
||
|
pkgdesc="A notes plugin for the Xfce4 panel"
|
||
|
arch=(i686 x86_64)
|
||
|
license=('GPL2')
|
||
|
url="http://xfce-goodies.berlios.de/"
|
||
|
groups=('xfce4-goodies')
|
||
|
depends=('xfce4-panel>=4.6.1' 'hicolor-icon-theme')
|
||
|
makedepends=('pkgconfig' 'intltool')
|
||
|
options=('!libtool')
|
||
|
install=${pkgname}.install
|
||
|
source=(http://archive.xfce.org/src/panel-plugins/${pkgname}/1.7/${pkgname}-${pkgver}.tar.bz2)
|
||
|
md5sums=('c6d27d8c566fbd98a14bd59273da0adf')
|
||
|
|
||
|
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
|
||
|
}
|