summaryrefslogtreecommitdiff
path: root/community/dunst/PKGBUILD
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2013-01-28 16:53:19 +0100
committerMichał Masłowski <mtjm@mtjm.eu>2013-01-28 16:53:19 +0100
commit01346da4de50d9eda2660653fcaae6c1abfaa28a (patch)
treebd7bb7e3f004777c788f809c5a5a10a69839be13 /community/dunst/PKGBUILD
parent5bc312c4c7af74bbbb6042c5856bac6e53efa32c (diff)
parent1b9f6dc846379470b620b5dbb9d4d7acd1de148c (diff)
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts: community/fcitx-chewing/PKGBUILD community/fcitx-cloudpinyin/PKGBUILD community/fcitx-rime/PKGBUILD community/linux-tools/PKGBUILD community/lxpanel/PKGBUILD community/pdns/PKGBUILD core/bash/PKGBUILD core/gcc/PKGBUILD core/glibc/PKGBUILD extra/json-c/PKGBUILD extra/liblouis/PKGBUILD extra/live-media/PKGBUILD extra/samba/PKGBUILD extra/transmission/PKGBUILD social/opentracker/PKGBUILD
Diffstat (limited to 'community/dunst/PKGBUILD')
-rw-r--r--community/dunst/PKGBUILD20
1 files changed, 7 insertions, 13 deletions
diff --git a/community/dunst/PKGBUILD b/community/dunst/PKGBUILD
index 79d954947..fc9f7c083 100644
--- a/community/dunst/PKGBUILD
+++ b/community/dunst/PKGBUILD
@@ -1,32 +1,26 @@
-$Id: PKGBUILD 76730 2012-09-28 03:35:52Z dwallace $
+# $Id: PKGBUILD 83044 2013-01-26 21:37:31Z dwallace $
# Maintainer: Daniel Wallace <danielwallace at gtmanfred dot com>
# Contributor: feuri
pkgname=dunst
-pkgver=0.4.0
+pkgver=0.5.0
pkgrel=1
pkgdesc="a dmenu-ish notification system "
arch=('i686' 'x86_64' 'mips64el')
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')
+depends=(dbus libxinerama libxft libxss libxdg-basedir)
+makedepends=('perl')
provides=(notification-daemon)
source=("${pkgname}-${pkgver}.tar.bz2::http://www.knopwob.org/public/dunst-release/$pkgname-$pkgver.tar.bz2")
-md5sums=('615b673011222f6ab6f5df28def329a9')
+md5sums=('3805fd0ef171378cc6ff3a74ce8a4f06')
build() {
- cd "${srcdir}/$pkgname-$pkgver"
-
- make X11INC=/usr/include/X11 X11LIB=/usr/lib/X11
+ make -C "$srcdir/$pkgname-$pkgver" X11INC=/usr/include/X11 X11LIB=/usr/lib/X11
}
package() {
- cd "${srcdir}/$pkgname-$pkgver"
-
- make DESTDIR="${pkgdir}" PREFIX=/usr install
-
+ make -C "$pkgname-$pkgver" DESTDIR="${pkgdir}" PREFIX=/usr install
install -Dm644 "${srcdir}/$pkgname-$pkgver/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
# vim:set ts=2 sw=2 et: