summaryrefslogtreecommitdiff
path: root/extra
diff options
context:
space:
mode:
Diffstat (limited to 'extra')
-rw-r--r--extra/asymptote/PKGBUILD6
-rw-r--r--extra/cups/PKGBUILD6
-rw-r--r--extra/cups/cups.install5
-rw-r--r--extra/dvgrab/PKGBUILD16
-rw-r--r--extra/gdm/PKGBUILD13
-rw-r--r--extra/gnome-python-extras/PKGBUILD4
-rw-r--r--extra/help2man/PKGBUILD6
-rw-r--r--extra/kdeplasma-applets-networkmanagement/PKGBUILD6
-rw-r--r--extra/live-media/PKGBUILD6
-rw-r--r--extra/octave/PKGBUILD25
-rw-r--r--extra/octave/curlfix.patch10
-rw-r--r--extra/perl-fcgi/PKGBUILD6
-rw-r--r--extra/perl-time-hires/PKGBUILD30
-rw-r--r--extra/putty/PKGBUILD36
-rw-r--r--extra/screen/PKGBUILD7
-rw-r--r--extra/smb4k/PKGBUILD6
-rw-r--r--extra/sshfs/PKGBUILD17
17 files changed, 123 insertions, 82 deletions
diff --git a/extra/asymptote/PKGBUILD b/extra/asymptote/PKGBUILD
index d33875673..3dadd0b5d 100644
--- a/extra/asymptote/PKGBUILD
+++ b/extra/asymptote/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 127783 2011-06-18 10:36:42Z remy $
+# $Id: PKGBUILD 131761 2011-07-14 17:10:17Z remy $
# Maintainer: Rémy Oudompheng <remy@archlinux.org>
# Contributor: Firmicus <francois.archlinux.org>
# Contributor: bender02 at gmx dot com
pkgname=asymptote
-pkgver=2.11
+pkgver=2.13
pkgrel=1
pkgdesc="A vector graphics language (like metapost)"
arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@ optdepends=('python2: for the xasy GUI'
'tix: for the xasy GUI')
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.src.tgz)
install=texlive.install
-sha1sums=('fde16f05bddb9e86a4dd05f25369f35c771fb84b')
+sha1sums=('b4f2b72c0a4e7a02b716bfd0ad64bab45c567bbd')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
diff --git a/extra/cups/PKGBUILD b/extra/cups/PKGBUILD
index b9f3effa8..753d439df 100644
--- a/extra/cups/PKGBUILD
+++ b/extra/cups/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 129509 2011-06-28 15:26:54Z andyrtr $
+# $Id: PKGBUILD 131768 2011-07-14 19:06:35Z andyrtr $
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
pkgbase="cups"
pkgname=('libcups' 'cups')
pkgver=1.4.7
-pkgrel=1
+pkgrel=2
arch=('i686' 'x86_64')
license=('GPL')
url="http://www.cups.org/"
@@ -105,7 +105,7 @@ optdepends=('php: for included phpcups.so module'
# kill the sysv stuff
rm -rf ${pkgdir}/etc/rc*.d
rm -rf ${pkgdir}/etc/init.d
- install -D -m755 ../cups ${pkgdir}/etc/rc.d/cups
+ install -D -m755 ../cups ${pkgdir}/etc/rc.d/cupsd
install -D -m644 ../cups.logrotate ${pkgdir}/etc/logrotate.d/cups
install -D -m644 ../cups.pam ${pkgdir}/etc/pam.d/cups
diff --git a/extra/cups/cups.install b/extra/cups/cups.install
index c4307912b..0b7245aa7 100644
--- a/extra/cups/cups.install
+++ b/extra/cups/cups.install
@@ -12,6 +12,11 @@ post_upgrade() {
if [ -x usr/bin/xdg-icon-resource ]; then
xdg-icon-resource forceupdate --theme hicolor 2> /dev/null
fi
+ if [ "`vercmp $2 1.4.7-2`" -lt 0 ]; then
+ # important upgrade notice
+ echo "daemon srcript has been renamed to /etc/rc.d/cupsd"
+ echo "change your entry in /etc/rc.conf"
+ fi
}
post_remove() {
diff --git a/extra/dvgrab/PKGBUILD b/extra/dvgrab/PKGBUILD
index cb1cef1e2..13f366a06 100644
--- a/extra/dvgrab/PKGBUILD
+++ b/extra/dvgrab/PKGBUILD
@@ -1,22 +1,28 @@
-# $Id: PKGBUILD 63911 2010-01-19 01:19:21Z andrea $
+# $Id: PKGBUILD 131663 2011-07-13 13:39:59Z giovanni $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: Jason Chu <jason@archlinux.org>
pkgname=dvgrab
pkgver=3.5
-pkgrel=2
+pkgrel=3
pkgdesc="Saves audio and video data from an IEEE (FireWire) digital source"
arch=('i686' 'x86_64')
url="http://www.kinodv.org"
license=('GPL')
-depends=('libdv' 'libavc1394' 'libjpeg>=8' 'libiec61883' 'gcc-libs')
+depends=('libdv' 'libavc1394' 'libjpeg-turbo' 'libiec61883' 'gcc-libs')
makedepends=('pkgconfig')
-source=(http://downloads.sourceforge.net/kino/${pkgname}-${pkgver}.tar.gz)
+source=("http://downloads.sourceforge.net/kino/${pkgname}-${pkgver}.tar.gz")
md5sums=('b39a242ce63e80fc347ab59931f75649')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
+
./configure --prefix=/usr
- make || return 1
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
make DESTDIR="${pkgdir}" install
}
diff --git a/extra/gdm/PKGBUILD b/extra/gdm/PKGBUILD
index ac5e5f98f..cb697cfd8 100644
--- a/extra/gdm/PKGBUILD
+++ b/extra/gdm/PKGBUILD
@@ -1,8 +1,8 @@
-# $Id: PKGBUILD 125903 2011-05-31 16:34:54Z ibiru $
+# $Id: PKGBUILD 131658 2011-07-13 12:36:38Z ibiru $
# Maintainer: Jan de Groot <jgc@archlinux.org>
pkgname=gdm
pkgver=3.0.4
-pkgrel=1
+pkgrel=2
pkgdesc="Gnome Display Manager (a reimplementation of xdm)"
arch=('i686' 'x86_64')
license=('GPL')
@@ -10,7 +10,7 @@ url="http://www.gnome.org"
backup=('etc/pam.d/gdm' 'etc/pam.d/gdm-autologin' 'etc/gdm/custom.conf')
groups=('gnome-extra')
options=('!libtool')
-depends=('libcanberra' 'libxklavier' 'tcp_wrappers' 'gnome-session' 'upower' 'accountsservice' 'consolekit' 'xorg-xrdb')
+depends=('libcanberra' 'libxklavier' 'gnome-session' 'upower' 'accountsservice' 'consolekit' 'xorg-xrdb')
makedepends=('intltool' 'gnome-doc-utils' 'xorg-server')
conflicts=('fast-user-switch-applet')
replaces=('fast-user-switch-applet')
@@ -34,9 +34,12 @@ build() {
patch -Np1 -i "${srcdir}/gdm-vt-allocation-hack.patch"
./configure --prefix=/usr --sysconfdir=/etc \
- --libexecdir=/usr/lib/gdm --localstatedir=/var --disable-static \
+ --libexecdir=/usr/lib/gdm \
+ --localstatedir=/var \
--with-at-spi-registryd-directory=/usr/lib/at-spi \
- --disable-scrollkeeper
+ --disable-scrollkeeper \
+ --disable-static \
+ --without-tcp-wrappers
make
}
diff --git a/extra/gnome-python-extras/PKGBUILD b/extra/gnome-python-extras/PKGBUILD
index 4cc6d4027..ed65bc42a 100644
--- a/extra/gnome-python-extras/PKGBUILD
+++ b/extra/gnome-python-extras/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 131183 2011-07-11 14:53:15Z ibiru $
+# $Id: PKGBUILD 131702 2011-07-13 15:39:40Z ibiru $
# Maintainer: Jan de Groot <jgc@archlinux.org>
pkgbase=gnome-python-extras
pkgname=('gnome-python-extras' 'python2-egg' 'python2-gda' 'python2-gksu2' 'python2-gtkhtml2' 'python2-gtkspell')
pkgver=2.25.3
-pkgrel=9
+pkgrel=10
arch=('i686' 'x86_64')
url="http://www.daa.com.au/~james/pygtk/"
license=('GPL' 'LGPL')
diff --git a/extra/help2man/PKGBUILD b/extra/help2man/PKGBUILD
index ee5284faf..525dd9a65 100644
--- a/extra/help2man/PKGBUILD
+++ b/extra/help2man/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 124968 2011-05-25 13:58:20Z giovanni $
+# $Id: PKGBUILD 131671 2011-07-13 13:59:50Z giovanni $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: Paul Mattal <paul@mattal.com>
pkgname=help2man
-pkgver=1.39.4
+pkgver=1.40.4
pkgrel=1
pkgdesc="Conversion tool to create man files"
arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@ license=('GPL')
depends=('perl-locale-gettext')
install=help2man.install
source=("http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz")
-md5sums=('6b1160697451ba87067231d172285840')
+md5sums=('4d79dc7cb7c20019c2a3650d35259c45')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
diff --git a/extra/kdeplasma-applets-networkmanagement/PKGBUILD b/extra/kdeplasma-applets-networkmanagement/PKGBUILD
index 227b4f85f..4953ba703 100644
--- a/extra/kdeplasma-applets-networkmanagement/PKGBUILD
+++ b/extra/kdeplasma-applets-networkmanagement/PKGBUILD
@@ -4,8 +4,8 @@
pkgname=kdeplasma-applets-networkmanagement
epoch=1
-pkgver=git20110620
-_commit=1a04682c18a6029132ab1c520b1fec2f4e609854
+pkgver=git20110713
+_commit=ac332a3e9f6e8ae7427e017b5826e51789437949
pkgrel=1
pkgdesc="KDE control panel and widget network connections"
arch=('i686' 'x86_64')
@@ -16,7 +16,7 @@ makedepends=('cmake' 'python2' 'automoc4' 'mobile-broadband-provider-info')
optdepends=('mobile-broadband-provider-info: allow to add new mobile connection')
install=${pkgname}.install
source=("${pkgname}-${pkgver}.tar.gz"::"http://quickgit.kde.org/?p=networkmanagement.git&a=snapshot&h=${_commit}")
-md5sums=('5fc1d5300d04375dd8bfaf39fc590cca')
+md5sums=('e367743c72b072ae6d1b6988a3bc4406')
build() {
cd "${srcdir}"
diff --git a/extra/live-media/PKGBUILD b/extra/live-media/PKGBUILD
index 299cd11c8..1766ef232 100644
--- a/extra/live-media/PKGBUILD
+++ b/extra/live-media/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 129953 2011-06-30 15:40:13Z giovanni $
+# $Id: PKGBUILD 131676 2011-07-13 14:16:16Z giovanni $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: Gilles CHAUVIN <gcnweb@gmail.com>
pkgname=live-media
-pkgver=2011.06.16
+pkgver=2011.07.08
pkgrel=1
pkgdesc="A set of C++ libraries for multimedia streaming"
arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@ license=('LGPL')
url="http://live555.com/liveMedia"
depends=('gcc-libs')
source=("http://live555.com/liveMedia/public/live.${pkgver}.tar.gz")
-md5sums=('9895e723ee9fe87422f120dc646875d5')
+md5sums=('527ebb1061ed1c2b439b02bd26e52440')
build() {
cd ${srcdir}/live
diff --git a/extra/octave/PKGBUILD b/extra/octave/PKGBUILD
index 21ff40fe7..b88a9edbc 100644
--- a/extra/octave/PKGBUILD
+++ b/extra/octave/PKGBUILD
@@ -1,38 +1,39 @@
-# $Id: PKGBUILD 131039 2011-07-09 20:49:15Z stephane $
+# $Id: PKGBUILD 131750 2011-07-14 12:35:49Z ronald $
# Maintainer: Ronald van Haren <ronald.archlinux.org>
# Contributor : shining <shiningxc.at.gmail.com>
# Contributor : cyberdune <cyberdune@gmail.com>
pkgname=octave
pkgver=3.4.2
-pkgrel=1
+pkgrel=2
pkgdesc="A high-level language, primarily intended for numerical computations."
arch=('i686' 'x86_64')
url="http://www.octave.org"
license=('GPL')
depends=('fftw' 'pcre' 'curl' 'lapack' 'libx11' 'graphicsmagick' 'glpk' 'hdf5' 'gcc-libs' 'qhull')
-makedepends=('texinfo' 'graphicsmagick' 'gcc-fortran' 'umfpack')
+makedepends=('texinfo' 'graphicsmagick' 'gcc-fortran' 'umfpack' 'texlive-core')
optdepends=('texinfo: for help-support in octave'
'gnuplot: alternative plotting'
'umfpack: LU decomposition of some large sparse matrices')
-source=("ftp://ftp.gnu.org/gnu/octave/octave-$pkgver.tar.bz2")
+source=("ftp://ftp.gnu.org/gnu/octave/octave-$pkgver.tar.bz2" "curlfix.patch")
options=('!emptydirs')
-#install=octave.install
-sha1sums=('12cac29ef7d1ab8374980e1e2fd14637b2f15ba5')
-
+install=octave.install
+sha1sums=('12cac29ef7d1ab8374980e1e2fd14637b2f15ba5'
+ '3f856798f5f8aa15bce1200b8abd059154f3d909')
+
build() {
cd ${srcdir}/${pkgname}-${pkgver}
+ # remove curl/types.h include
+ patch -Np0 -i ${srcdir}/curlfix.patch
+
# http://www.nabble.com/Random-rounding-errors-td16010966.html
FFLAGS="-O -ffloat-store" \
- # Avoid build failure due to missing curl/types.h
- sed -i "/curl\/types.h/d" src/DLD-FUNCTIONS/urlwrite.cc
-
./configure --prefix=/usr --libexecdir=/usr/lib \
- --enable-shared --disable-static --disable-docs
+ --enable-shared --disable-static
- make
+ LANG=C make
}
package(){
diff --git a/extra/octave/curlfix.patch b/extra/octave/curlfix.patch
new file mode 100644
index 000000000..26f3d92f9
--- /dev/null
+++ b/extra/octave/curlfix.patch
@@ -0,0 +1,10 @@
+--- src/DLD-FUNCTIONS/urlwrite.cc.old 2011-07-02 16:39:22.466603778 +0200
++++ src/DLD-FUNCTIONS/urlwrite.cc 2011-07-02 16:39:54.543269859 +0200
+@@ -52,7 +52,6 @@
+
+ #include <curl/curl.h>
+ #include <curl/curlver.h>
+-#include <curl/types.h>
+ #include <curl/easy.h>
+
+ static int
diff --git a/extra/perl-fcgi/PKGBUILD b/extra/perl-fcgi/PKGBUILD
index d44eddf2a..40e52f634 100644
--- a/extra/perl-fcgi/PKGBUILD
+++ b/extra/perl-fcgi/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 125303 2011-05-25 19:27:52Z remy $
+# $Id: PKGBUILD 131681 2011-07-13 14:35:40Z giovanni $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: François Charette <firmicus ατ gmx δοτ net>
pkgname=perl-fcgi
-pkgver=0.72
+pkgver=0.73
pkgrel=1
pkgdesc="Fast CGI"
arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@ license=('GPL' 'PerlArtistic')
depends=('perl>=5.14')
options=('!emptydirs')
source=(http://www.cpan.org/CPAN/authors/id/F/FL/FLORA/FCGI-${pkgver}.tar.gz)
-md5sums=('7b793e177caa93d972c6fb7ebe7c7ae1')
+md5sums=('b55c8b93ccd175b3c0e4473f1a6c0bdd')
build() {
cd "${srcdir}/FCGI-${pkgver}"
diff --git a/extra/perl-time-hires/PKGBUILD b/extra/perl-time-hires/PKGBUILD
index db9ddcb7f..c7bc5a1bd 100644
--- a/extra/perl-time-hires/PKGBUILD
+++ b/extra/perl-time-hires/PKGBUILD
@@ -1,25 +1,35 @@
-# $Id: PKGBUILD 125291 2011-05-25 19:23:52Z foutrelis $
+# $Id: PKGBUILD 131686 2011-07-13 14:46:13Z giovanni $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: mezcal <fila at pruda dot com>
pkgname=perl-time-hires
-pkgver=1.9721
-pkgrel=4
+pkgver=1.9724
+pkgrel=1
pkgdesc="Perl module: high resolution time, sleep, and alarm"
arch=('i686' 'x86_64')
license=('PerlArtistic')
url="http://search.cpan.org/dist/Time-HiRes/"
depends=('perl')
options=(!emptydirs)
-source=(http://search.cpan.org/CPAN/authors/id/J/JH/JHI/Time-HiRes-${pkgver}.tar.gz)
-md5sums=('bf09911a36b9481537c8e0d28fbb3aaf')
+source=("http://search.cpan.org/CPAN/authors/id/Z/ZE/ZEFRAM/Time-HiRes-${pkgver}.tar.gz")
+md5sums=('6467b001de9ba5c01785ebbb8ea247cb')
build() {
cd "${srcdir}/Time-HiRes-${pkgver}"
- # install module in vendor directories.
- perl Makefile.PL INSTALLDIRS=vendor
- make
- make test
- make install DESTDIR="${pkgdir}"
+ PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+
+ make
+}
+
+check() {
+ cd "${srcdir}/Time-HiRes-${pkgver}"
+
+ make test
+}
+
+package() {
+ cd "${srcdir}/Time-HiRes-${pkgver}"
+
+ make install DESTDIR="${pkgdir}"
}
diff --git a/extra/putty/PKGBUILD b/extra/putty/PKGBUILD
index 6252fc40c..c4b3adcc9 100644
--- a/extra/putty/PKGBUILD
+++ b/extra/putty/PKGBUILD
@@ -1,26 +1,26 @@
-# $Id: PKGBUILD 57024 2009-10-31 09:56:01Z allan $
-# Maintainer: damir <damir@archlinux.org>
-# Contributor: Andreas Schweitzer <andy@bootblock.de>
-# with ideas by Michael Baehr
+# $Id: PKGBUILD 131725 2011-07-14 01:51:53Z eric $
+# Maintainer: Eric Bélanger <eric@archlinux.org>
pkgname=putty
-pkgver=0.60
-pkgrel=2
-pkgdesc="A terminal integrated SSH/Telnet client known from Windows."
+pkgver=0.61
+pkgrel=1
+pkgdesc="A terminal integrated SSH/Telnet client"
arch=('i686' 'x86_64')
url="http://www.chiark.greenend.org.uk/~sgtatham/putty/"
-license=('custom')
-depends=('gtk')
-#source=(ftp://ftp.chiark.greenend.org.uk/users/sgtatham/putty-latest/$pkgname-$pkgver.tar.gz)
-source=("http://the.earth.li/~sgtatham/putty/latest/putty-$pkgver.tar.gz")
-md5sums=('07e65fd98b16d115ae38a180bfb242e2')
+license=('MIT')
+depends=('gtk2')
+source=(http://the.earth.li/~sgtatham/putty/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+md5sums=('db0e37f6b82ea62f0ace87927d29b2a4')
+sha1sums=('cbb82fd392142e3455e859ca8bc7b1e61b246204')
build() {
- export CFLAGS="$CFLAGS -fno-strict-aliasing"
- cd $srcdir/$pkgname-$pkgver/unix
+ cd "${srcdir}/${pkgname}-${pkgver}/unix"
./configure --prefix=/usr
- make || return 1
- install -dm755 $pkgdir/usr/{bin,share/man/man1}
- make DESTDIR=$pkgdir install
- install -D -m644 ../LICENCE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}/unix"
+ make DESTDIR="${pkgdir}" install
+ install -D -m644 ../LICENCE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
diff --git a/extra/screen/PKGBUILD b/extra/screen/PKGBUILD
index 0a1383e22..c22d539c2 100644
--- a/extra/screen/PKGBUILD
+++ b/extra/screen/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 114599 2011-03-14 13:43:00Z allan $
+# $Id: PKGBUILD 131720 2011-07-14 01:42:52Z allan $
# Maintainer: Allan McRae <allan@archlinux.org>
# Committer: dorphell <dorphell@gmx.net>
pkgname=screen
pkgver=4.0.3
-pkgrel=11
+pkgrel=12
_ptygroup=5 #the UID of our PTY/TTY group
pkgdesc="Full-screen window manager that multiplexes a physical terminal"
arch=('i686' 'x86_64')
@@ -30,7 +30,8 @@ build() {
./configure --prefix=/usr --enable-pam \
--with-sys-screenrc=/etc/screenrc --enable-colors256 \
- --enable-rxvt_osc --with-pty-group=$_ptygroup \
+ --enable-rxvt_osc --enable-telnet \
+ --with-pty-group=$_ptygroup \
--mandir=/usr/share/man --infodir=/usr/share/info
make
}
diff --git a/extra/smb4k/PKGBUILD b/extra/smb4k/PKGBUILD
index 9d0fb81ae..280cd0fcd 100644
--- a/extra/smb4k/PKGBUILD
+++ b/extra/smb4k/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 116040 2011-03-22 16:37:49Z giovanni $
+# $Id: PKGBUILD 131691 2011-07-13 14:56:55Z giovanni $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: Emanuele Rampichini <emanuele.rampichini@gmail.com>
pkgname=smb4k
-pkgver=0.10.10
+pkgver=0.10.70
pkgrel=1
pkgdesc="A KDE program that browses samba shares"
arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@ depends=('kdebase-runtime')
makedepends=('cmake' 'automoc4' 'docbook-xsl')
install=smb4k.install
source=("http://download.berlios.de/smb4k/${pkgname}-${pkgver}.tar.bz2")
-md5sums=('637ca913ffe9ac24a4dd09d4eddf0dcf')
+md5sums=('30f916d8f72fc43a9eca8f344960b43a')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
diff --git a/extra/sshfs/PKGBUILD b/extra/sshfs/PKGBUILD
index 4a29c7d84..7f3d85374 100644
--- a/extra/sshfs/PKGBUILD
+++ b/extra/sshfs/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 68119 2010-02-10 20:04:33Z giovanni $
+# $Id: PKGBUILD 131653 2011-07-13 12:06:33Z giovanni $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
pkgname=sshfs
-pkgver=2.2
-pkgrel=3
+pkgver=2.3
+pkgrel=1
pkgdesc="FUSE client based on the SSH File Transfer Protocol"
arch=('i686' 'x86_64')
url="http://fuse.sourceforge.net/sshfs.html"
@@ -11,12 +11,17 @@ license=('GPL')
depends=('fuse' 'glib2' 'openssh')
makedepends=('pkgconfig')
source=(http://downloads.sourceforge.net/sourceforge/fuse/${pkgname}-fuse-${pkgver}.tar.gz)
-md5sums=('26e9206eb5169e87e6f95f54bc005a4f')
+md5sums=('f72f12fda186dbd92382f70d25662ed3')
build() {
cd "${srcdir}/${pkgname}-fuse-${pkgver}"
./configure --prefix=/usr
- make || return 1
- make DESTDIR="${pkgdir}" install || return 1
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-fuse-${pkgver}"
+
+ make DESTDIR="${pkgdir}" install
}