diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/orage |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/orage')
-rw-r--r-- | extra/orage/PKGBUILD | 36 | ||||
-rw-r--r-- | extra/orage/orage.install | 11 |
2 files changed, 47 insertions, 0 deletions
diff --git a/extra/orage/PKGBUILD b/extra/orage/PKGBUILD new file mode 100644 index 000000000..dde132ac6 --- /dev/null +++ b/extra/orage/PKGBUILD @@ -0,0 +1,36 @@ +# $Id: PKGBUILD 112907 2011-03-07 18:26:07Z andyrtr $ +# Maintainer: Andreas Radke <andyrtr@archlinux.org> +# Contributor: Tobias Kieslich <tobias (at) archlinux.org> + +pkgname=orage +pkgver=4.8.1 +pkgrel=2 +pkgdesc="A simple calendar application with reminders for Xfce" +arch=('i686' 'x86_64') +license=('GPL2') +url="http://www.xfce.org/projects/orage/" +groups=('xfce4-goodies') +depends=('xfce4-panel' 'libical' 'popt' 'libnotify>=0.7.1' 'hicolor-icon-theme') +makedepends=('intltool' 'xfce4-dev-tools' 'popt') +options=('!libtool') +replaces=('xfcalendar') +install=${pkgname}.install +source=(http://archive.xfce.org/src/apps/${pkgname}/4.8/${pkgname}-${pkgver}.tar.bz2) +md5sums=('9c1139ce03e9f309240e712cf31b6a49') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --libexecdir=/usr/lib \ + --localstatedir=/var \ + --enable-libical \ + --disable-static \ + --disable-debug + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make -j1 DESTDIR=${pkgdir} install +} diff --git a/extra/orage/orage.install b/extra/orage/orage.install new file mode 100644 index 000000000..21b79d2d4 --- /dev/null +++ b/extra/orage/orage.install @@ -0,0 +1,11 @@ +post_install() { + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor +} + +post_upgrade() { + post_install $1 +} + +post_remove() { + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor +} |