summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--community/busybox/PKGBUILD4
-rw-r--r--community/cherokee/PKGBUILD13
-rw-r--r--community/cherokee/fix-ctk-path-handler-match.patch16
-rw-r--r--community/cppcheck/PKGBUILD6
-rw-r--r--community/fotoxx/PKGBUILD4
-rw-r--r--community/roxterm/PKGBUILD8
-rw-r--r--extra/akonadi/PKGBUILD16
-rw-r--r--extra/foobillard++/PKGBUILD37
-rw-r--r--extra/lua/PKGBUILD10
-rw-r--r--extra/oxygen-gtk/PKGBUILD6
-rw-r--r--extra/telepathy-kde-presence-dataengine/PKGBUILD6
-rw-r--r--extra/ypbind-mt/PKGBUILD35
-rw-r--r--gnome-unstable/gnome-shell/PKGBUILD10
-rw-r--r--gnome-unstable/libgdata/PKGBUILD6
-rw-r--r--gnome-unstable/pulseaudio/PKGBUILD10
15 files changed, 123 insertions, 64 deletions
diff --git a/community/busybox/PKGBUILD b/community/busybox/PKGBUILD
index 0aa86474b..664e1682f 100644
--- a/community/busybox/PKGBUILD
+++ b/community/busybox/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 55598 2011-09-14 21:43:19Z spupykin $
+# $Id: PKGBUILD 55611 2011-09-15 22:10:36Z ebelanger $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Jens Pranaitis <jens@jenux.homelinux.org>
@@ -7,7 +7,7 @@ pkgver=1.19.2
pkgrel=2
pkgdesc="Utilities for rescue and embedded systems"
arch=("i686" "x86_64")
-url="http://busybox.net"
+url="http://www.busybox.net"
license=('GPL')
makedepends=("make" "gcc" "sed" "ncurses")
source=($url/downloads/$pkgname-$pkgver.tar.bz2
diff --git a/community/cherokee/PKGBUILD b/community/cherokee/PKGBUILD
index 93fe2247a..5e2b61234 100644
--- a/community/cherokee/PKGBUILD
+++ b/community/cherokee/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 55378 2011-09-10 20:22:39Z foutrelis $
+# $Id: PKGBUILD 55615 2011-09-16 00:44:29Z foutrelis $
# Maintainer: Evangelos Foutras <evangelos@foutrelis.com>
# Contributor: Link Dupont <link@subpop.net>
pkgname=cherokee
pkgver=1.2.99
-pkgrel=2
+pkgrel=3
pkgdesc="A very fast, flexible and easy to configure Web Server"
arch=('i686' 'x86_64')
url="http://www.cherokee-project.com/"
@@ -24,14 +24,19 @@ backup=('etc/cherokee/cherokee.conf'
options=('!libtool')
source=(http://www.cherokee-project.com/download/1.2/$pkgver/cherokee-$pkgver.tar.gz
cherokee.rc
- cherokee.logrotate)
+ cherokee.logrotate
+ fix-ctk-path-handler-match.patch)
md5sums=('c83115c3eebb29e6f2b4cc6fe699affe'
'a2d2b69c6220fab57cda4f531b680f9f'
- '8d69341bd4002bffd69c6e82ff6c905f')
+ '8d69341bd4002bffd69c6e82ff6c905f'
+ 'e9475edd26ee24d035783e5999244857')
build() {
cd "$srcdir/$pkgname-$pkgver"
+ # Fix path matching bug in CTK apps (e.g. market)
+ patch -Np1 -i "$srcdir/fix-ctk-path-handler-match.patch"
+
# Use subdirectory for logs
sed -i -r 's|(%localstatedir%/log)|\1/cherokee|' cherokee.conf.sample.pre
diff --git a/community/cherokee/fix-ctk-path-handler-match.patch b/community/cherokee/fix-ctk-path-handler-match.patch
new file mode 100644
index 000000000..abd20c5ef
--- /dev/null
+++ b/community/cherokee/fix-ctk-path-handler-match.patch
@@ -0,0 +1,16 @@
+diff -upr cherokee-1.2.99.orig/admin/CTK/CTK/Server.py cherokee-1.2.99/admin/CTK/CTK/Server.py
+--- cherokee-1.2.99.orig/admin/CTK/CTK/Server.py 2011-06-06 14:17:35.000000000 +0300
++++ cherokee-1.2.99/admin/CTK/CTK/Server.py 2011-09-16 03:31:06.000000000 +0300
+@@ -121,8 +121,11 @@ class ServerHandler (pyscgi.SCGIHandler)
+ my_thread.scgi_conn = self
+ my_thread.request_url = url
+
++ # Drop the query string before matching against the handlers
++ path = url.split('?', 1)[0]
++
+ for published in server._web_paths:
+- if re.match (published._regex, url):
++ if re.match (published._regex, path):
+ # POST
+ if published._method == 'POST':
+ post = self._process_post()
diff --git a/community/cppcheck/PKGBUILD b/community/cppcheck/PKGBUILD
index e1598e189..ddab85731 100644
--- a/community/cppcheck/PKGBUILD
+++ b/community/cppcheck/PKGBUILD
@@ -1,7 +1,7 @@
-# $Id: PKGBUILD 50806 2011-07-01 15:04:30Z stephane $
+# $Id: PKGBUILD 55608 2011-09-15 21:38:48Z stephane $
# Maintainer: Stéphane Gaudreault <stephane@archlinux.org>
pkgname=cppcheck
-pkgver=1.49
+pkgver=1.50
pkgrel=1
pkgdesc="A tool for static C/C++ code analysis"
arch=('i686' 'x86_64')
@@ -9,7 +9,7 @@ url="http://cppcheck.wiki.sourceforge.net/"
license=('GPL')
depends=('pcre')
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('d04c1b207aca59f845aac57de3b08f44168d5aa9')
+sha1sums=('39ad14cb4cb9caa45fd3365203c5f54981ee2870')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
diff --git a/community/fotoxx/PKGBUILD b/community/fotoxx/PKGBUILD
index 817aa32b2..0bf347cb8 100644
--- a/community/fotoxx/PKGBUILD
+++ b/community/fotoxx/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
pkgname=fotoxx
pkgver=11.09
-pkgrel=1
+pkgrel=2
pkgdesc="A program for improving image files made with a digital camera"
url="http://kornelix.squarespace.com/fotoxx"
arch=('i686' 'x86_64')
@@ -9,7 +9,7 @@ license=('GPL3')
depends=('gimp-ufraw' 'perl-exiftool' 'xdg-utils' 'desktop-file-utils')
optdepends=('mashup: for composing pages to print from within fotoxx' 'brasero: for burning')
source=("http://kornelix.squarespace.com/storage/downloads/$pkgname-$pkgver.tar.gz")
-md5sums=('dd851af4ce6e9d900fbf0afd65270ae8')
+md5sums=('7001aec08a6291abf1c7c480b79cc38f')
install=fotoxx.install
build() {
diff --git a/community/roxterm/PKGBUILD b/community/roxterm/PKGBUILD
index ad189f6e9..b09cd3c3d 100644
--- a/community/roxterm/PKGBUILD
+++ b/community/roxterm/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 55595 2011-09-14 14:55:41Z ttopper $
+# $Id: PKGBUILD 55606 2011-09-15 14:20:05Z ttopper $
# Maintainer: Thorsten Töpper <atsutane-tu@freethoughts.de>
# Contributor: Alexander Fehr <pizzapunk gmail com>
pkgname=roxterm
-pkgver=2.1.2
+pkgver=2.1.3
pkgrel=1
pkgdesc="Tabbed, VTE-based terminal emulator"
arch=('i686' 'x86_64')
@@ -13,8 +13,8 @@ depends=('dbus-glib' 'vte3' 'hicolor-icon-theme' 'dbus' 'dbus-core' 'glib2')
makedepends=('docbook-xsl' 'xmlto' 'po4a')
install=roxterm.install
source=(http://downloads.sourceforge.net/roxterm/roxterm-$pkgver.tar.gz)
-md5sums=('ad94bb37de28fcc3997a5529277708a1')
-sha1sums=('463c334596744f60f9592752d85eb4af4feeef1d')
+sha1sums=('7ebfefd1196ded78185a549fb7cc4662aa661dec')
+md5sums=('73b394916f798f1829dcae316f2b5ba3')
build() {
diff --git a/extra/akonadi/PKGBUILD b/extra/akonadi/PKGBUILD
index cb61420ae..8b850d7e3 100644
--- a/extra/akonadi/PKGBUILD
+++ b/extra/akonadi/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 137927 2011-09-12 16:08:18Z andrea $
+# $Id: PKGBUILD 138066 2011-09-15 20:23:52Z andrea $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Pierre Schmitz <pierre@archlinux.de>
pkgname=akonadi
-pkgver=1.6.0
-pkgrel=3
+pkgver=1.6.1
+pkgrel=1
pkgdesc="PIM layer, which provides an asynchronous API to access all kind of PIM data"
arch=('i686' 'x86_64')
url='http://pim.kde.org/akonadi'
@@ -12,16 +12,10 @@ license=('LGPL')
depends=('shared-mime-info' 'boost-libs' 'mysql' 'soprano')
makedepends=('pkgconfig' 'cmake' 'automoc4' 'boost')
install="${pkgname}.install"
-source=("http://download.kde.org/stable/${pkgname}/src/${pkgname}-${pkgver}.tar.bz2"
- 'fix-slow-kde-logout.patch')
-md5sums=('16bc40e022d06f287f18c71faaeb2e42'
- 'cdf0c3bd5741303e4f98ea435c39f09d')
+source=("http://download.kde.org/stable/${pkgname}/src/${pkgname}-${pkgver}.tar.bz2")
+md5sums=('8a78b2f9438ffc36d0f37d55839fb444')
build() {
- # Already fixed upstream
- cd "${srcdir}"/${pkgname}-${pkgver}
- patch -p1 -i "${srcdir}"/fix-slow-kde-logout.patch
-
cd "${srcdir}"
mkdir build
cd build
diff --git a/extra/foobillard++/PKGBUILD b/extra/foobillard++/PKGBUILD
new file mode 100644
index 000000000..a1e52baf9
--- /dev/null
+++ b/extra/foobillard++/PKGBUILD
@@ -0,0 +1,37 @@
+# $Id: PKGBUILD 138073 2011-09-16 03:35:31Z eric $
+# Maintainer: Eric Bélanger <eric@archlinux.org>
+
+pkgname=foobillard++
+pkgver=3.4beta
+pkgrel=1
+pkgdesc="An OpenGL billiard game"
+arch=('i686' 'x86_64')
+url="http://foobillardplus.sourceforge.net/"
+license=('GPL2')
+depends=('bzip2' 'freetype2' 'libpng' 'mesa' 'sdl_net')
+replaces=('foobillard')
+source=(http://downloads.sourceforge.net/foobillardplus/foobillardplus-${pkgver}.tar.gz)
+md5sums=('130418a45ba84b4132f9b27712feb919')
+sha1sums=('d8723568e460ee62cb913b0c8d7c9a9f557395ee')
+
+build() {
+ cd "${srcdir}/foobillardplus-${pkgver}"
+ sed -i 's|$prefix/foobillardplus|$prefix|' configure
+ sed -i 's|$prefix/data|$prefix/share/foobillardplus|' configure
+ sed -i 's|"/data"|"/share/foobillardplus"|' src/language.c
+ sed -i 's|/opt/foobillardplus/bin/||' foobillardplus.desktop
+ sed -i 's|/opt/foobillardplus/||' foobillardplus.desktop
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "${srcdir}/foobillardplus-${pkgver}"
+ install -Dm755 src/foobillardplus "${pkgdir}/usr/bin/foobillardplus"
+ install -d "${pkgdir}/usr/share/foobillardplus"
+ cp -R data/* "${pkgdir}/usr/share/foobillardplus"
+ install -Dm644 foobillardplus.desktop "${pkgdir}/usr/share/applications/foobillardplus.desktop"
+ install -Dm644 foobillardplus.png "${pkgdir}/usr/share/pixmaps/foobillardplus.png"
+ install -Dm644 foobillardplus.xbm "${pkgdir}/usr/share/pixmaps/foobillardplus.xbm"
+ find "${pkgdir}" -depth -type d -name .svn -exec rm -rf {} \;
+}
diff --git a/extra/lua/PKGBUILD b/extra/lua/PKGBUILD
index 6a6274b99..871d8f655 100644
--- a/extra/lua/PKGBUILD
+++ b/extra/lua/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 137921 2011-09-12 13:07:25Z pierre $
+# $Id: PKGBUILD 138070 2011-09-16 01:15:44Z eric $
# Maintainer: Juergen Hoetzel <juergen@archlinux.org>
# Contributor: Damir Perisa <damir.perisa@bluewin.ch>
pkgname=lua
pkgver=5.1.4
-pkgrel=7
+pkgrel=8
pkgdesc="A powerful light-weight programming language designed for extending applications."
arch=('i686' 'x86_64')
url="http://www.lua.org/"
@@ -12,18 +12,18 @@ depends=('readline')
license=('MIT')
options=('!makeflags' '!emptydirs')
source=("http://www.lua.org/ftp/${pkgname}-${pkgver}.tar.gz"
- 'http://www.lua.org/ftp/patch-lua-5.1.4-2'
+ 'http://www.lua.org/ftp/patch-lua-5.1.4-3'
'lua-arch.patch'
'lua-5.1-cflags.diff')
md5sums=('d0870f2de55d59c1c8419f36e8fac150'
- '1239310e0c4a581c7831e596f95cc6cd'
+ '998ef7886183f61d3a5ca891a9ce6a79'
'6c5953f63904bf20a0183cdab05b80de'
'249582bf1fd861ccf492d2c35a9fe732')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
patch -p1 -i "${srcdir}/lua-arch.patch"
- patch -i ${srcdir}/patch-lua-5.1.4-2 -d src
+ patch -i "${srcdir}/patch-lua-5.1.4-3" -d src
[ "$CARCH" == "x86_64" ] && patch -Np1 -i ../lua-5.1-cflags.diff
[ "$CARCH" == "x86_64" ] && export CFLAGS="$CFLAGS -fPIC"
make INSTALL_DATA="cp -d" TO_LIB="liblua.a liblua.so liblua.so.5.1" LUA_SO=liblua.so \
diff --git a/extra/oxygen-gtk/PKGBUILD b/extra/oxygen-gtk/PKGBUILD
index c0a63047a..13c862323 100644
--- a/extra/oxygen-gtk/PKGBUILD
+++ b/extra/oxygen-gtk/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 135550 2011-08-15 12:45:44Z andrea $
+# $Id: PKGBUILD 138061 2011-09-15 17:22:52Z andrea $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
# Contributor: birdflesh <antkoul at gmail dot com>
pkgname=oxygen-gtk
-pkgver=1.1.2
+pkgver=1.1.3
pkgrel=1
pkgdesc="Port of the default KDE widget theme (Oxygen) to GTK"
arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@ license=('LGPL')
depends=('gtk2')
makedepends=('cmake')
source=("http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2")
-md5sums=('f4d7f6203d8bcf41ff3403333f399628')
+md5sums=('e3b280a61cbe4363c41c26083e94643d')
build() {
cd "${srcdir}"
diff --git a/extra/telepathy-kde-presence-dataengine/PKGBUILD b/extra/telepathy-kde-presence-dataengine/PKGBUILD
index e022f4748..53364c696 100644
--- a/extra/telepathy-kde-presence-dataengine/PKGBUILD
+++ b/extra/telepathy-kde-presence-dataengine/PKGBUILD
@@ -1,15 +1,15 @@
-# $Id$
+# $Id: PKGBUILD 138063 2011-09-15 18:35:47Z andrea $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Laurent Carlier <lordheavym@gmail.com>
pkgname=telepathy-kde-presence-dataengine
pkgver=0.1.0
-pkgrel=1
+pkgrel=2
pkgdesc="Plasma dataengine for managing Telepathy account presence"
arch=('i686' 'x86_64')
url="http://www.kde.org"
license=('GPL')
-depends=('kdebase-plasma' 'telepathy-qt4')
+depends=('kdebase-workspace' 'telepathy-qt4')
makedepends=('cmake' 'automoc4')
groups=('telepathy-kde')
source=("http://download.kde.org/unstable/telepathy-kde/${pkgver}/src/${pkgname}_${pkgver}.tar.bz2")
diff --git a/extra/ypbind-mt/PKGBUILD b/extra/ypbind-mt/PKGBUILD
index 45cf58258..60df94219 100644
--- a/extra/ypbind-mt/PKGBUILD
+++ b/extra/ypbind-mt/PKGBUILD
@@ -1,19 +1,20 @@
-# $Id: PKGBUILD 126308 2011-06-04 12:37:21Z bisson $
+# $Id: PKGBUILD 138068 2011-09-15 22:41:35Z tomegun $
# Maintainer: Gaetan Bisson <bisson@archlinux.org>
# Contributor: judd <jvinet@zeroflux.org>
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
pkgname=ypbind-mt
pkgver=1.33
-pkgrel=2
+pkgrel=3
pkgdesc='Linux NIS daemon'
-arch=('i686' 'x86_64')
url='http://www.linux-nis.org/nis/ypbind-mt/'
license=('GPL2')
-depends=('rpcbind' 'openslp')
+arch=('i686' 'x86_64')
+makedepends=('networkmanager')
+depends=('rpcbind' 'openslp' 'dbus-glib')
optdepends=('yp-tools: to set a domain name')
backup=('etc/yp.conf' 'etc/conf.d/ypbind' 'etc/conf.d/nisdomainname')
-source=("ftp://ftp.kernel.org/pub/linux/utils/net/NIS/$pkgname-$pkgver.tar.gz"
+source=("ftp://ftp.kernel.org/pub/linux/utils/net/NIS/${pkgname}-${pkgver}.tar.gz"
'nisdomainname.conf'
'ypbind.conf'
'ypbind')
@@ -23,17 +24,23 @@ sha1sums=('49f578d15aa5d4f4130a2e96cd9c0e519263fc88'
'112fc2aedfe3f761325b69647b7938bc1be5bfcd')
build() {
- cd "$srcdir/$pkgname-$pkgver"
- ./configure --prefix=/usr --disable-dbus-nm
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ ./configure \
+ --prefix=/usr \
+ --enable-dbus-nm \
+
make
}
package() {
- cd "$srcdir/$pkgname-$pkgver"
- make DESTDIR="$pkgdir" install
- install -D -m644 etc/yp.conf "$pkgdir"/etc/yp.conf
- install -D -m755 ../ypbind "$pkgdir"/etc/rc.d/ypbind
- install -D -m644 ../ypbind.conf "$pkgdir"/etc/conf.d/ypbind
- install -D -m644 ../nisdomainname.conf "$pkgdir"/etc/conf.d/nisdomainname
- install -d -m755 "$pkgdir"/var/yp/binding
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ make DESTDIR="${pkgdir}" install
+
+ install -D -m644 etc/yp.conf "${pkgdir}"/etc/yp.conf
+ install -D -m755 ../ypbind "${pkgdir}"/etc/rc.d/ypbind
+ install -D -m644 ../ypbind.conf "${pkgdir}"/etc/conf.d/ypbind
+ install -D -m644 ../nisdomainname.conf "${pkgdir}"/etc/conf.d/nisdomainname
+ install -d -m755 "${pkgdir}"/var/yp/binding
}
diff --git a/gnome-unstable/gnome-shell/PKGBUILD b/gnome-unstable/gnome-shell/PKGBUILD
index bf46ddfd7..fbfd2b9ec 100644
--- a/gnome-unstable/gnome-shell/PKGBUILD
+++ b/gnome-unstable/gnome-shell/PKGBUILD
@@ -1,22 +1,22 @@
-# $Id: PKGBUILD 137320 2011-09-07 06:37:25Z ibiru $
+# $Id: PKGBUILD 138033 2011-09-15 04:09:11Z heftig $
# Maintainer: Ionut Biru <ibiru@archlinux.org>
# Contributor: Flamelab <panosfilip@gmail.com
pkgname=gnome-shell
-pkgver=3.1.91
+pkgver=3.1.91.1
pkgrel=1
pkgdesc="The next generation GNOME Shell"
arch=('i686' 'x86_64')
url="http://live.gnome.org/GnomeShell"
license=('GPL2')
depends=('mutter' 'gjs' 'libcroco' 'gnome-bluetooth' 'gnome-desktop' 'gnome-menus' 'libpulse' 'folks' 'telepathy-logger' 'networkmanager' 'caribou')
-makedepends=('intltool' 'gnome-doc-utils')
+makedepends=('intltool' 'gnome-doc-utils' 'xulrunner')
optdepends=('network-manager-applet: shell integration for networkmanager')
options=('!libtool' '!emptydirs')
install=gnome-shell.install
groups=(gnome)
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('54cc92ee03739ffe7cacdef3138d9a86990e2b204c895f5188c722b802ea585f')
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/3.1/$pkgname-$pkgver.tar.xz)
+sha256sums=('d0da24c87f6851811e89774bb271b66377e67b5373ca3f73cfda7fec827f3865')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
diff --git a/gnome-unstable/libgdata/PKGBUILD b/gnome-unstable/libgdata/PKGBUILD
index 2629b9a04..04a6047a9 100644
--- a/gnome-unstable/libgdata/PKGBUILD
+++ b/gnome-unstable/libgdata/PKGBUILD
@@ -1,8 +1,8 @@
-# $Id: PKGBUILD 136697 2011-08-31 14:39:04Z ibiru $
+# $Id: PKGBUILD 138057 2011-09-15 10:55:07Z ibiru $
# Maintainer: Jan de Groot <jgc@archlinux.org>
pkgname=libgdata
-pkgver=0.10.0
+pkgver=0.10.1
pkgrel=1
pkgdesc="GLib-based library for accessing online service APIs using the GData protocol"
arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@ makedepends=('pkgconfig' 'intltool' 'gobject-introspection')
url="http://www.gnome.org"
options=('!libtool')
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('af4805304763b93058773bbfdb06925189159196066207f275cb34b1b5c552ec')
+sha256sums=('d7f27b1019905792246336599cadc7470b362806ed5e2c038a9f7c0da257f6ef')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
diff --git a/gnome-unstable/pulseaudio/PKGBUILD b/gnome-unstable/pulseaudio/PKGBUILD
index cf6990553..f2ccf6bdd 100644
--- a/gnome-unstable/pulseaudio/PKGBUILD
+++ b/gnome-unstable/pulseaudio/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 137322 2011-09-07 06:44:12Z heftig $
+# $Id: PKGBUILD 138059 2011-09-15 12:10:17Z heftig $
# Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com>
# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
# Contributor: Corrado Primier <bardo@aur.archlinux.org>
@@ -6,8 +6,8 @@
pkgbase=pulseaudio
pkgname=(pulseaudio libpulse)
-pkgver=0.99.3
-pkgrel=2
+pkgver=0.99.4
+pkgrel=1
arch=(i686 x86_64)
url="http://pulseaudio.org/"
license=(GPL LGPL)
@@ -17,8 +17,8 @@ makedepends=(libasyncns libcap attr libxtst libsm libsamplerate libtool rtkit
options=(!emptydirs !libtool !makeflags)
source=("http://freedesktop.org/software/$pkgbase/releases/$pkgbase-$pkgver.tar.gz"
$pkgbase.xinit)
-md5sums=('95787b514872d838b49ec4d7debdd6aa'
- 'eb1cfae28eb2e4d3fdbe45a90e4318ab')
+sha256sums=('7dde2f73f6b8336797d06928c8210d5e6cfaa7d679bea7b93f5ffc26fb970fec'
+ '3fb64aee43c482b3ea18e1b260c8f310884362b24bcd02a1c117dcd99237312f')
build() {
cd "$srcdir/$pkgbase-$pkgver"