diff options
author | root <root@rshg054.dnsready.net> | 2012-09-28 01:39:44 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-09-28 01:39:44 -0700 |
commit | 3edc42216fee4bb8237aa128510c32ceb77dfd8f (patch) | |
tree | 1745e2804c7f439fdb27aefa6f4a6884f0442727 /community/dunst | |
parent | bd8faf795abf6d91abdc52bc968829cc2efae4bb (diff) |
Fri Sep 28 01:39:41 PDT 2012
Diffstat (limited to 'community/dunst')
-rw-r--r-- | community/dunst/PKGBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/community/dunst/PKGBUILD b/community/dunst/PKGBUILD new file mode 100644 index 000000000..33337133b --- /dev/null +++ b/community/dunst/PKGBUILD @@ -0,0 +1,32 @@ +$Id: PKGBUILD 76730 2012-09-28 03:35:52Z dwallace $ +# Maintainer: Daniel Wallace <danielwallace at gtmanfred dot com> +# Contributor: feuri + +pkgname=dunst +pkgver=0.4.0 +pkgrel=1 +pkgdesc="a dmenu-ish notification system " +arch=('i686' 'x86_64') +url="http://knopwob.github.com/dunst" +license=(MIT) +depends=(dbus-core libxinerama libxft libxss libxdg-basedir) +makedepends=('git' 'perl') +optdepends=('libnotify: dunst is able to listen to notifications from libnotify') +provides=(notification-daemon) +source=("${pkgname}-${pkgver}.tar.bz2::http://www.knopwob.org/public/dunst-release/$pkgname-$pkgver.tar.bz2") +md5sums=('615b673011222f6ab6f5df28def329a9') + +build() { + cd "${srcdir}/$pkgname-$pkgver" + + make X11INC=/usr/include/X11 X11LIB=/usr/lib/X11 +} + +package() { + cd "${srcdir}/$pkgname-$pkgver" + + make DESTDIR="${pkgdir}" PREFIX=/usr install + + install -Dm644 "${srcdir}/$pkgname-$pkgver/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} +# vim:set ts=2 sw=2 et: |