summaryrefslogtreecommitdiff
path: root/extra
diff options
context:
space:
mode:
Diffstat (limited to 'extra')
-rw-r--r--extra/ardour/PKGBUILD5
-rw-r--r--extra/docker/PKGBUILD6
-rw-r--r--extra/fftw/PKGBUILD34
-rw-r--r--extra/fftw/fftw.install2
-rw-r--r--extra/gettext-mono/PKGBUILD23
-rw-r--r--extra/imagemagick/PKGBUILD6
-rw-r--r--extra/lftp/PKGBUILD18
-rw-r--r--extra/mod_mono/PKGBUILD19
-rw-r--r--extra/mono-addins/PKGBUILD17
-rw-r--r--extra/mono-basic/PKGBUILD18
-rw-r--r--extra/rubberband/PKGBUILD8
-rw-r--r--extra/smartmontools/PKGBUILD11
-rw-r--r--extra/system-config-printer/PKGBUILD8
-rw-r--r--extra/taglib-sharp/PKGBUILD8
-rw-r--r--extra/xf86-video-intel/PKGBUILD6
15 files changed, 106 insertions, 83 deletions
diff --git a/extra/ardour/PKGBUILD b/extra/ardour/PKGBUILD
index 62516ef37..c153916c9 100644
--- a/extra/ardour/PKGBUILD
+++ b/extra/ardour/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 172504 2012-12-04 11:26:49Z schiv $
+# $Id: PKGBUILD 176990 2013-02-03 14:59:10Z schiv $
# Maintainer: Ray Rashif <schiv@archlinux.org>
# Contributor: tobias <tobias@archlinux.org>
# Contributor: Giovanni Scafora <giovanni@archlinux.org>
@@ -46,8 +46,7 @@ build() {
DIST_LIBDIR="lib" \
FREEDESKTOP=0 \
FREESOUND=1 \
- SYSLIBS=1 \
- DESTDIR="$pkgdir"
+ SYSLIBS=1
}
package() {
diff --git a/extra/docker/PKGBUILD b/extra/docker/PKGBUILD
index 3c26eb3cc..40da4ab08 100644
--- a/extra/docker/PKGBUILD
+++ b/extra/docker/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 137718 2011-09-10 13:25:58Z pierre $
+# $Id: PKGBUILD 176971 2013-02-03 07:03:24Z allan $
# Contributor: Jochem Kossen <j.kossen@home.nl>
pkgname=docker
pkgver=1.5
-pkgrel=5
+pkgrel=6
pkgdesc="Docker is a docking application (WindowMaker dock app) which acts as a system tray for KDE and GNOME2."
arch=('i686' 'x86_64')
url="http://icculus.org/openbox/2/docker/"
@@ -14,11 +14,11 @@ md5sums=('349320bebd43babb8b43e11c7aae0293')
build() {
cd $srcdir/$pkgname-$pkgver
- install -d $pkgdir/usr/bin
make
}
package() {
cd $srcdir/$pkgname-$pkgver
+ install -d $pkgdir/usr/bin
make PREFIX=$pkgdir/usr install
}
diff --git a/extra/fftw/PKGBUILD b/extra/fftw/PKGBUILD
index db4322f0b..54a1c08ee 100644
--- a/extra/fftw/PKGBUILD
+++ b/extra/fftw/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 159277 2012-05-20 10:35:50Z ronald $
+# $Id: PKGBUILD 176986 2013-02-03 11:04:50Z allan $
# Maintainer: Ronald van Haren <ronald.archlinux.org>
# Contributor: damir <damir@archlinux.org>
pkgname=fftw
-pkgver=3.3.2
+pkgver=3.3.3
pkgrel=1
pkgdesc="A library for computing the discrete Fourier transform (DFT)"
arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@ makedepends=('gcc-fortran')
options=('!libtool')
source=("http://www.fftw.org/${pkgname}-${pkgver}.tar.gz")
install=fftw.install
-sha1sums=('11a8c31186ff5a7d686a79a3f21b2530888e0dc2')
+sha1sums=('11487180928d05746d431ebe7a176b52fe205cf9')
# notes:
# http://www.fftw.org/fftw2_doc/fftw_6.html#SEC69
@@ -23,28 +23,42 @@ sha1sums=('11a8c31186ff5a7d686a79a3f21b2530888e0dc2')
build() {
- cd ${srcdir}/${pkgname}-${pkgver}
+ cd ${srcdir}
+
+ cp -a ${pkgname}-${pkgver} ${pkgname}-${pkgver}-double
+ cp -a ${pkgname}-${pkgver} ${pkgname}-${pkgver}-long-double
+ mv ${pkgname}-${pkgver} ${pkgname}-${pkgver}-single
+
# use upstream default CFLAGS while keeping our -march/-mtune
CFLAGS+=" -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math"
CONFIGURE="./configure F77=gfortran --prefix=/usr \
- --enable-shared --enable-threads --enable-type-prefix"
+ --enable-shared --enable-threads"
- # build & install double precision
+ # build double precision
+ cd ${srcdir}/${pkgname}-${pkgver}-double
$CONFIGURE --enable-sse2
make
- make DESTDIR=${pkgdir} install
- make clean
# build & install long double precission
+ cd ${srcdir}/${pkgname}-${pkgver}-long-double
$CONFIGURE --enable-long-double
make
- make DESTDIR=${pkgdir} install
- make clean
# build & install single precision
+ cd ${srcdir}/${pkgname}-${pkgver}-single
$CONFIGURE --enable-float --enable-sse
make
+}
+
+package() {
+ cd ${srcdir}/${pkgname}-${pkgver}-double
make DESTDIR=${pkgdir} install
+
+ cd ${srcdir}/${pkgname}-${pkgver}-long-double
+ make DESTDIR=${pkgdir} install
+
+ cd ${srcdir}/${pkgname}-${pkgver}-single
+ make DESTDIR=${pkgdir} install
}
diff --git a/extra/fftw/fftw.install b/extra/fftw/fftw.install
index a3748aae1..b2b22ac67 100644
--- a/extra/fftw/fftw.install
+++ b/extra/fftw/fftw.install
@@ -2,6 +2,7 @@ info_dir=/usr/share/info
info_files=(fftw3.info)
post_install() {
+ [[ -x usr/bin/install-info ]] || return 0
for f in ${info_files[@]}; do
install-info ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
done
@@ -12,6 +13,7 @@ post_upgrade() {
}
pre_remove() {
+ [[ -x usr/bin/install-info ]] || return 0
for f in ${info_files[@]}; do
install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
done
diff --git a/extra/gettext-mono/PKGBUILD b/extra/gettext-mono/PKGBUILD
index 9e89644a8..61d2a19a4 100644
--- a/extra/gettext-mono/PKGBUILD
+++ b/extra/gettext-mono/PKGBUILD
@@ -1,16 +1,17 @@
-# $Id: PKGBUILD 144881 2011-12-08 21:14:16Z daniel $
+# $Id: PKGBUILD 176967 2013-02-03 06:53:37Z allan $
# Maintainer: Daniel Isenmann <daniel@archlinux.org>
pkgname=gettext-mono
-pkgver=0.18.1.1
+pkgver=0.18.2
pkgrel=1
pkgdesc="mono assemblies for GNU internationalization library"
arch=('i686' 'x86_64')
url="http://www.gnu.org/software/gettext"
license=('GPL')
depends=('mono>=2.10.6')
-source=(ftp://ftp.gnu.org/pub/gnu/gettext/gettext-$pkgver.tar.gz)
-md5sums=('3dd55b952826d2b32f51308f2f91aa89')
+source=(ftp://ftp.gnu.org/pub/gnu/gettext/gettext-$pkgver.tar.gz{,.sig})
+md5sums=('0c86e5af70c195ab8bd651d17d783928'
+ '1a658e29a03ab42da6d2d468b0583407')
build() {
# get rid of that .wapi errors; thanks to brice
@@ -18,14 +19,18 @@ build() {
export MONO_SHARED_DIR=$srcdir/weird
cd $srcdir/gettext-$pkgver
- ./configure --prefix=/usr --enable-csharp=mono || return 1
- make || return 1
+ ./configure --prefix=/usr --enable-csharp=mono
+ make
+}
+
+package() {
+ cd $srcdir/gettext-$pkgver
# libraries are installed manually
install -Dm644 gettext-runtime/intl-csharp/GNU.Gettext.dll \
- $pkgdir/usr/lib/GNU.Gettext.dll || return 1
+ $pkgdir/usr/lib/GNU.Gettext.dll
install -Dm644 gettext-tools/src/msgfmt.net.exe \
- $pkgdir/usr/lib/gettext/msgfmt.net.exe || return 1
+ $pkgdir/usr/lib/gettext/msgfmt.net.exe
install -Dm644 gettext-tools/src/msgunfmt.net.exe \
- $pkgdir/usr/lib/gettext/msgunfmt.net.exe || return 1
+ $pkgdir/usr/lib/gettext/msgunfmt.net.exe
}
# vim: ft=sh ts=2 et
diff --git a/extra/imagemagick/PKGBUILD b/extra/imagemagick/PKGBUILD
index 964dd4ca2..9765f21a6 100644
--- a/extra/imagemagick/PKGBUILD
+++ b/extra/imagemagick/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 176298 2013-01-28 17:54:15Z eric $
+# $Id: PKGBUILD 177003 2013-02-03 18:51:00Z eric $
# Maintainer: Eric BĂ©langer <eric@archlinux.org>
pkgbase=imagemagick
pkgname=('imagemagick' 'imagemagick-doc')
-pkgver=6.8.2.0
+pkgver=6.8.2.3
pkgrel=1
arch=('i686' 'x86_64')
url="http://www.imagemagick.org/"
@@ -13,7 +13,7 @@ makedepends=('libltdl' 'lcms2' 'libxt' 'fontconfig' 'libxext' 'ghostscript' \
#source=(http://www.imagemagick.org/download/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz \
source=(ftp://ftp.sunet.se/pub/multimedia/graphics/ImageMagick/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz \
perlmagick.rpath.patch)
-sha1sums=('c5fd6dd5be520d1946cab9d49f39177d2279b9f1'
+sha1sums=('93c8ee2bf982c7c148c4872cd16f85f1073ec869'
'23405f80904b1de94ebd7bd6fe2a332471b8c283')
build() {
diff --git a/extra/lftp/PKGBUILD b/extra/lftp/PKGBUILD
index 97246248d..c127b4448 100644
--- a/extra/lftp/PKGBUILD
+++ b/extra/lftp/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 176314 2013-01-29 15:39:14Z andyrtr $
+# $Id: PKGBUILD 176998 2013-02-03 16:13:46Z andyrtr $
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
# Contributor: Aaron Griffin <aaron@archlinux.org>
pkgname=lftp
-pkgver=4.4.1
+pkgver=4.4.2
pkgrel=1
pkgdesc="Sophisticated command line based FTP client"
arch=('i686' 'x86_64')
@@ -12,16 +12,16 @@ depends=('gcc-libs' 'readline>=6.2' "gnutls" "expat>=2.0.1-4" 'sh')
optdepends=('perl: needed for convert-netscape-cookies and verify-file')
url="http://lftp.yar.ru/"
backup=('etc/lftp.conf')
-source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2
- lftp-4.3.8-gets.patch)
-md5sums=('1a6de8e3922ffb51ec21642e51744b02'
- '77168a7f368b07eec7e079b55496fa97')
+source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('8e974cd87c9d4362031f61351cfe742e')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
- patch -Np1 -i ${srcdir}/lftp-4.3.8-gets.patch
- ./configure --prefix=/usr --with-gnutls \
- --without-openssl --disable-static
+ ./configure --prefix=/usr \
+ --with-gnutls \
+ --without-openssl \
+ --without-included-regex \
+ --disable-static
make
}
diff --git a/extra/mod_mono/PKGBUILD b/extra/mod_mono/PKGBUILD
index 781714d14..55e6a1820 100644
--- a/extra/mod_mono/PKGBUILD
+++ b/extra/mod_mono/PKGBUILD
@@ -1,24 +1,27 @@
-# $Id: PKGBUILD 149083 2012-02-05 17:05:29Z daniel $
+# $Id: PKGBUILD 176977 2013-02-03 09:59:14Z allan $
# Maintainer: Daniel Isenmann <daniel@archlinux.org>
# Contributor: Tobias Kieslich <tobias@justdreams.de>
pkgname=mod_mono
pkgver=2.10
-pkgrel=2
+pkgrel=3
pkgdesc="The mono module to make ASP.NET running on top of apache"
-arch=(i686 x86_64)
+arch=('i686' 'x86_64')
+url="http://www.go-mono.com"
license=('APACHE')
depends=('apache>=2.2.11' 'xsp')
-url="http://www.go-mono.com"
-install=${pkgname}.install
source=(http://ftp.novell.com/pub/mono/sources/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
md5sums=('422c533a0dfbd699eb6339234261150a')
build() {
- cd ${startdir}/src/${pkgname}-${pkgver}
+ cd ${srcdir}/${pkgname}-${pkgver}
CFLAGS="${CFLAGS} `apr-1-config --cppflags --includes --cflags`" ./configure \
--prefix=/usr --sysconfdir=/etc --with-apxs=/usr/sbin/apxs \
--with-mono-prefix=/usr --with-apr-config=/usr/bin/apr-1-config
- make || return 1
- make DESTDIR=${startdir}/pkg install
+ make
+}
+
+package() {
+ cd ${srcdir}//${pkgname}-${pkgver}
+ make DESTDIR=${pkgdir}/ install
}
diff --git a/extra/mono-addins/PKGBUILD b/extra/mono-addins/PKGBUILD
index ccaac768b..e588d11be 100644
--- a/extra/mono-addins/PKGBUILD
+++ b/extra/mono-addins/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 149085 2012-02-05 17:06:07Z daniel $
+# $Id: PKGBUILD 176969 2013-02-03 06:59:53Z allan $
# Maintainer: Daniel Isenmann <daniel@archlinux.org>
# Contributor: tardo <tardo@nagi-fanboi.net>
pkgname=mono-addins
pkgver=0.6.2
-pkgrel=2
+pkgrel=3
pkgdesc="A generic framework for creating extensible applications and for creating libraries which extend those applications"
arch=('i686' 'x86_64')
url="http://www.mono-project.com/Mono.Addins"
@@ -17,12 +17,15 @@ md5sums=('afbbe5e9fdf9b03911bc8e6b94feb60b')
build() {
export MONO_SHARED_DIR="${srcdir}/.wabi"
mkdir -p "${MONO_SHARED_DIR}"
+
cd ${srcdir}/${pkgname}-${pkgver}
+ ./configure --prefix=/usr --enable-gui
+ make
+}
- ./configure --prefix=/usr --enable-gui || return 1
- make || return 1
- make GACUTIL="/usr/bin/gacutil -root ${pkgdir}/usr/lib" DESTDIR=${pkgdir} install || return 1
+package() {
+ cd ${srcdir}/${pkgname}-${pkgver}
+ make GACUTIL="/usr/bin/gacutil -root ${pkgdir}/usr/lib" DESTDIR=${pkgdir} install
- install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
- install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/ || return 1
+ install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
}
diff --git a/extra/mono-basic/PKGBUILD b/extra/mono-basic/PKGBUILD
index b0552c5a1..585dafaf1 100644
--- a/extra/mono-basic/PKGBUILD
+++ b/extra/mono-basic/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 149087 2012-02-05 17:06:50Z daniel $
+# $Id: PKGBUILD 176982 2013-02-03 10:15:27Z allan $
# Maintainer: Daniel Isenmann <daniel@archlinux.org>
pkgname=mono-basic
pkgver=2.10
-pkgrel=2
+pkgrel=3
pkgdesc="Mono Visual Basic.NET compiler"
-arch=(i686 x86_64)
+arch=('i686' 'x86_64')
license=('GPL')
url="http://www.mono-project.com/"
depends=('mono>=2.10.1')
@@ -17,12 +17,16 @@ build() {
# get rid of that .wapi errors; thanks to brice
export MONO_SHARED_DIR=${startdir}/src/weird
mkdir -p "${MONO_SHARED_DIR}"
+
# build mono
- cd ${startdir}/src/${pkgname}-${pkgver}
+ cd ${srcdir}/${pkgname}-${pkgver}
./configure --prefix=/usr
- sed -i 's/\/usr\/bin\/install/\/bin\/install/g' man/Makefile || return 1
- make || return 1
- make DESTDIR=${startdir}/pkg install
+ make
+}
+
+package() {
+ cd ${srcdir}/${pkgname}-${pkgver}
+ make DESTDIR=${pkgdir} install
}
diff --git a/extra/rubberband/PKGBUILD b/extra/rubberband/PKGBUILD
index 9cf4c07d1..4ea263bd7 100644
--- a/extra/rubberband/PKGBUILD
+++ b/extra/rubberband/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 151338 2012-02-25 14:44:44Z pierre $
+# $Id: PKGBUILD 176992 2013-02-03 15:07:34Z schiv $
# Maintainer: Ray Rashif <schiv@archlinux.org>
# Contributor: Felipe Machado aka arch_audio <machado.felipe@gmail.com>
pkgname=rubberband
-pkgver=1.7.0
+pkgver=1.8.1
pkgrel=1
pkgdesc="Time-stretching and pitch-shifting audio library and utility"
arch=('i686' 'x86_64')
@@ -11,8 +11,8 @@ url="http://www.breakfastquay.com/rubberband/"
license=('GPL')
depends=('libsamplerate' 'fftw' 'vamp-plugin-sdk')
makedepends=('ladspa')
-source=("http://code.breakfastquay.com/attachments/download/23/$pkgname-$pkgver.tar.bz2")
-md5sums=('49093923c7a48e5860a5f7db3590ac74')
+source=("http://code.breakfastquay.com/attachments/download/34/$pkgname-$pkgver.tar.bz2")
+md5sums=('6c2b4e18a714bcc297d0db81a10f9348')
build() {
cd "$srcdir/$pkgname-$pkgver"
diff --git a/extra/smartmontools/PKGBUILD b/extra/smartmontools/PKGBUILD
index 7c598e2cd..6af79cbcd 100644
--- a/extra/smartmontools/PKGBUILD
+++ b/extra/smartmontools/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 169084 2012-10-17 19:11:48Z giovanni $
+# $Id: PKGBUILD 177000 2013-02-03 16:40:55Z giovanni $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: Jeff Mickey <jeff@archlinux.org>
# Contributor: Jani Talikka <jani.talikka@gmail.com>
@@ -6,7 +6,7 @@
pkgname=smartmontools
pkgver=6.0
-pkgrel=1
+pkgrel=2
pkgdesc="Control and monitor S.M.A.R.T. enabled ATA and SCSI Hard Drives"
url="http://smartmontools.sourceforge.net"
license=('GPL')
@@ -15,11 +15,9 @@ depends=('gcc-libs' 'libcap-ng' 'bash')
backup=('etc/smartd.conf'
'etc/conf.d/smartd')
source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz"
- 'smartd.conf'
- 'smartd.rc')
+ 'smartd.conf')
md5sums=('5646a07f5f4bee8e2e649de8c6b7ae87'
- '28c1b80c41dac52d433961dcfb4f70e0'
- 'fb30e07f87f2c1d99532e018291ad3e8')
+ '28c1b80c41dac52d433961dcfb4f70e0')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
@@ -41,6 +39,5 @@ package() {
make DESTDIR="${pkgdir}" install
rm -rf ${pkgdir}/etc/rc.d
- install -Dm755 ${srcdir}/smartd.rc "${pkgdir}/etc/rc.d/smartd"
install -Dm644 ${srcdir}/smartd.conf "${pkgdir}/etc/conf.d/smartd"
}
diff --git a/extra/system-config-printer/PKGBUILD b/extra/system-config-printer/PKGBUILD
index 9d4ed52e6..232d3d2b4 100644
--- a/extra/system-config-printer/PKGBUILD
+++ b/extra/system-config-printer/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 176922 2013-02-02 17:50:55Z andrea $
+# $Id: PKGBUILD 176979 2013-02-03 10:02:30Z andrea $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
pkgbase=system-config-printer
pkgname=('system-config-printer-common'
'system-config-printer-gnome')
pkgver=1.3.12
-pkgrel=2
+pkgrel=3
pkgdesc="A CUPS printer configuration tool and status applet"
url="http://cyberelk.net/tim/software/system-config-printer/"
arch=('i686' 'x86_64')
@@ -81,9 +81,6 @@ package_system-config-printer-common() {
install -Dm644 $file \
"${pkgdir}"/usr/lib/python2.7/site-packages/cupshelpers/$(basename $file)
done
-
- install -Dm755 dbus/scp-dbus-service \
- "${pkgdir}"/usr/bin/scp-dbus-service
}
package_system-config-printer-gnome() {
@@ -95,7 +92,6 @@ package_system-config-printer-gnome() {
make DESTDIR="${pkgdir}" install
# files provided by system-config-printer-common
- rm "${pkgdir}"/usr/bin/scp-dbus-service
cd "${pkgdir}"/usr/share/${pkgbase}
rm config.py \
debug.py \
diff --git a/extra/taglib-sharp/PKGBUILD b/extra/taglib-sharp/PKGBUILD
index cead242c6..af21bb1e5 100644
--- a/extra/taglib-sharp/PKGBUILD
+++ b/extra/taglib-sharp/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 151835 2012-03-03 09:21:08Z daniel $
+# $Id: PKGBUILD 176984 2013-02-03 10:28:24Z allan $
# Maintainer: Daniel Isenmann <daniel@archlinux.org>
# Contributor: Carlos Ruiz <cailovirtual@gmail.com>
pkgname=taglib-sharp
pkgver=2.0.4.0
-pkgrel=1
-pkgdesc="It's a library for reading and writing metadata in media files, including video, audio, and photo formats for Mono"
+pkgrel=2
+pkgdesc="Library for reading and writing metadata in media files for Mono"
arch=('i686' 'x86_64')
url="https://github.com/mono/taglib-sharp"
license=('LGPL2')
@@ -14,7 +14,7 @@ source=(http://download.banshee-project.org/taglib-sharp/${pkgver}/${pkgname}-${
md5sums=('b886a65083aafdfefa0675675bcbeb9a')
build() {
- export MONO_SHARED_DIR="${startdir}/src/.wabi"
+ export MONO_SHARED_DIR="${srcdir}/.wabi"
mkdir -p "${MONO_SHARED_DIR}"
cd ${srcdir}/${pkgname}-${pkgver}
diff --git a/extra/xf86-video-intel/PKGBUILD b/extra/xf86-video-intel/PKGBUILD
index aaaee1d4b..8ce522b90 100644
--- a/extra/xf86-video-intel/PKGBUILD
+++ b/extra/xf86-video-intel/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 175768 2013-01-21 16:00:58Z andyrtr $
+# $Id: PKGBUILD 176993 2013-02-03 15:42:22Z andyrtr $
# Maintainer: AndyRTR <andyrtr@archlinux.org>
# Maintainer: Jan de Groot <jgc@archlinux.org>
pkgname=xf86-video-intel
-pkgver=2.20.19
+pkgver=2.21.0
pkgrel=1
arch=(i686 x86_64)
url="http://xorg.freedesktop.org/"
@@ -19,7 +19,7 @@ conflicts=('xorg-server<1.13.0' 'X-ABI-VIDEODRV_VERSION<13' 'X-ABI-VIDEODRV_VERS
options=('!libtool')
groups=('xorg-drivers' 'xorg')
source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('b9b20efe3118beaaa0f71954c9407a59bb439bf43dabe0eb4f1b62051cdbc74c')
+sha256sums=('d872adef06cbf1a4434811baad4b8a18feacc6633b59b36557e8d7db7161081c')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"