summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2011-11-20 23:14:50 +0000
committerroot <root@rshg054.dnsready.net>2011-11-20 23:14:50 +0000
commit70b4878648fd376433739bd5c835503f6301a5b2 (patch)
treec74d46f8e06305505e381202251b6f71ca33c3e7 /community
parenta3024f8996981b28ced27466cbd1d4ab40e57324 (diff)
Sun Nov 20 23:14:50 UTC 2011
Diffstat (limited to 'community')
-rw-r--r--community/ksshaskpass/PKGBUILD12
-rw-r--r--community/linuxtv-dvb-apps/PKGBUILD29
-rw-r--r--community/me-tv/PKGBUILD6
-rw-r--r--community/nodejs/PKGBUILD4
-rw-r--r--community/openssh-askpass/PKGBUILD7
-rw-r--r--community/puzzles/PKGBUILD5
-rw-r--r--community/python-lcms/PKGBUILD4
-rw-r--r--community/shntool/PKGBUILD8
8 files changed, 36 insertions, 39 deletions
diff --git a/community/ksshaskpass/PKGBUILD b/community/ksshaskpass/PKGBUILD
index 9fd126de3..63a0198c7 100644
--- a/community/ksshaskpass/PKGBUILD
+++ b/community/ksshaskpass/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=ksshaskpass
pkgver=0.5.3
-pkgrel=2
+pkgrel=3
pkgdesc='KDE4 implementation of ssh-askpass with Kwallet integration'
url='http://www.kde-apps.org/content/show.php/Ksshaskpass?content=50971'
license=('GPL')
@@ -17,19 +17,19 @@ md5sums=('05dad7745e9d92b08bd86e7ab7a9540d'
'70396ba019ae05cc91502456f548caff')
build() {
- cd $srcdir/$pkgname-$pkgver
+ cd "$srcdir"/$pkgname-$pkgver
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release
make
}
package() {
- cd $srcdir/$pkgname-$pkgver
- make DESTDIR=$pkgdir install
+ cd "$srcdir"/$pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
# Remove useless desktop file.
- rm -rf "$pkgdir/usr/share/applications"
+ rm -rf "$pkgdir"/usr/share/applications
# Documentation requires that this application is installed as /usr/bin/ssh-askpass.
# But this way is cleaner.
# Add script to profile.d to set ssh password agent to ksshasskpass.
- install -Dm 755 $srcdir/$pkgname.sh $pkgdir/etc/profile.d/$pkgname.sh
+ install -Dm 755 "$srcdir"/$pkgname.sh "$pkgdir"/etc/profile.d/$pkgname.sh
}
diff --git a/community/linuxtv-dvb-apps/PKGBUILD b/community/linuxtv-dvb-apps/PKGBUILD
index 66192edc6..9b4f6a8ba 100644
--- a/community/linuxtv-dvb-apps/PKGBUILD
+++ b/community/linuxtv-dvb-apps/PKGBUILD
@@ -1,37 +1,32 @@
-# $Id: PKGBUILD 21619 2010-07-16 20:05:39Z tdziedzic $
+# $Id: PKGBUILD 58910 2011-11-20 04:55:32Z jconder $
+# Maintainer: Jonathan Conder <jonno.conder@gmail.com>
# Contributor: Jaroslaw Swierczynski <swiergot@aur.archlinux.org>
# Contributor: Camille Moncelier <pix@devlife.org>
pkgname=linuxtv-dvb-apps
-pkgver=1.1.1
-pkgrel=4
-_hgrev=68d20621d93a
+pkgver=1452
+pkgrel=1
+_hgrev=d4e8bf5658ce
pkgdesc='Viewer programs for DVB cards'
arch=('i686' 'x86_64')
url='http://www.linuxtv.org/'
license=('GPL')
-install=linuxtv-dvb-apps.install
-#source=(http://www.linuxtv.org/download/dvb/$pkgname-$pkgver.tar.bz2)
-source=("http://linuxtv.org/hg/dvb-apps/archive/${_hgrev}.tar.bz2")
-md5sums=('5b43136359d9555a567a76ba28433afc')
+source=("http://linuxtv.org/hg/dvb-apps/archive/$_hgrev.tar.bz2")
+sha256sums=('c3bb865ea5c8dd97050d7b3a68ee158dadff50a2fb948d955b3a559be3cf31c5')
build() {
- cd dvb-apps-${_hgrev}
-
+ cd "dvb-apps-$_hgrev"
rm -rf include
make -C lib
-
make -C util
}
package() {
- cd dvb-apps-${_hgrev}
+ cd "dvb-apps-$_hgrev"
- make -C lib DESTDIR=${pkgdir} install
+ make -C lib DESTDIR="$pkgdir" install
+ make -C util DESTDIR="$pkgdir" install
- make -C util DESTDIR=${pkgdir} install
-
- chmod 755 ${pkgdir}/usr/lib/*.so*
+ chmod 755 "$pkgdir"/usr/lib/*.so*
}
-
diff --git a/community/me-tv/PKGBUILD b/community/me-tv/PKGBUILD
index bb1140601..1814501e5 100644
--- a/community/me-tv/PKGBUILD
+++ b/community/me-tv/PKGBUILD
@@ -6,15 +6,15 @@
pkgname=me-tv
pkgver=2.0.1
-pkgrel=1
+pkgrel=2
pkgdesc="A GTK desktop application for watching digital television services that use the DVB standard"
arch=('i686' 'x86_64')
url="https://launchpad.net/me-tv"
license=('GPL')
depends=('glibmm' 'gtkmm' 'gconfmm' 'glib2' 'xine-lib' 'sqlite3' 'linuxtv-dvb-apps' 'libunique' 'libxml++' 'vlc' 'gstreamer0.10-base')
makedepends=('intltool')
-install=me-tv.install
-source=(http://launchpad.net/${pkgname}/${pkgver:0:3}/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz)
+install='me-tv.install'
+source=("http://launchpad.net/${pkgname}/${pkgver:0:3}/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz")
options=('!emptydirs')
md5sums=('7cda820b795f2fea522ba3de5e312483')
diff --git a/community/nodejs/PKGBUILD b/community/nodejs/PKGBUILD
index 437f6ea1c..76d6a08fe 100644
--- a/community/nodejs/PKGBUILD
+++ b/community/nodejs/PKGBUILD
@@ -6,7 +6,7 @@
# Contributor: TIanyi Cui <tianyicui@gmail.com>
pkgname=nodejs
-pkgver=0.6.1
+pkgver=0.6.2
pkgrel=1
pkgdesc='Evented I/O for V8 javascript'
arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@ checkdepends=('curl') # curl used for check()
optdepends=('openssl: TLS support')
options=('!emptydirs')
source=("http://nodejs.org/dist/v${pkgver}/node-v${pkgver}.tar.gz")
-md5sums=('92b8085967110b0125c192634f127a2b')
+md5sums=('875431b2c2e3d0ebf5a676b3d96bf766')
build() {
cd node-v${pkgver}
diff --git a/community/openssh-askpass/PKGBUILD b/community/openssh-askpass/PKGBUILD
index 82db763d6..0c535b58e 100644
--- a/community/openssh-askpass/PKGBUILD
+++ b/community/openssh-askpass/PKGBUILD
@@ -4,7 +4,7 @@
pkgname=openssh-askpass
pkgver=1.3.2
-pkgrel=1
+pkgrel=2
pkgdesc='A plasma-like passphrase dialog for ssh'
arch=('i686' 'x86_64')
url='http://www.phenix.bnl.gov/WWW/publish/hpereira/software/index.php?page=package&package_list=software_list_qt4&package=openssh-askpass&full=1'
@@ -14,8 +14,6 @@ provides=('x11-ssh-askpass')
conflicts=('x11-ssh-askpass')
source=("http://www.phenix.bnl.gov/WWW/publish/hpereira/software/tgz/$pkgname-$pkgver.tar.gz"
"$pkgname.sh")
-md5sums=('89ca29f3b21c7ca87829269866dd623b'
- '961738244318f3723ba99cdcaac91a21')
build() {
cd "$srcdir/$pkgname-$pkgver"
@@ -27,3 +25,6 @@ package() {
make DESTDIR="$pkgdir" install
install -Dm755 ../$pkgname.sh "$pkgdir/etc/profile.d/$pkgname.sh"
}
+
+md5sums=('f4ed7ed95c727d1c3963007d9d24bdb8'
+ '961738244318f3723ba99cdcaac91a21')
diff --git a/community/puzzles/PKGBUILD b/community/puzzles/PKGBUILD
index 234666119..63ec27273 100644
--- a/community/puzzles/PKGBUILD
+++ b/community/puzzles/PKGBUILD
@@ -4,7 +4,7 @@
pkgname=puzzles
pkgver=9306
-pkgrel=1
+pkgrel=2
pkgdesc="Simon Tatham's Portable Puzzle Collection"
arch=('i686' 'x86_64')
url="http://www.chiark.greenend.org.uk/~sgtatham/puzzles/"
@@ -12,7 +12,6 @@ license=('MIT')
makedepends=('pkgconfig')
depends=('gtk2')
source=("http://www.chiark.greenend.org.uk/~sgtatham/${pkgname}/${pkgname}-r${pkgver}.tar.gz")
-md5sums=('30eac18bcfe1e202003709a8281a81bc')
build() {
cd ${srcdir}/${pkgname}-r${pkgver}
@@ -34,3 +33,5 @@ package() {
mv ${pkgdir}/usr/bin/cube ${pkgdir}/usr/bin/puzzles-cube
mv ${pkgdir}/usr/bin/blackbox ${pkgdir}/usr/bin/puzzles-blackbox
}
+
+md5sums=('317e97dc3bfc7cb901636761747fa4c9')
diff --git a/community/python-lcms/PKGBUILD b/community/python-lcms/PKGBUILD
index a501f1b26..5e2d6a263 100644
--- a/community/python-lcms/PKGBUILD
+++ b/community/python-lcms/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 26298 2010-09-14 17:18:19Z schuay $
+# $Id: PKGBUILD 58889 2011-11-19 16:52:42Z andrea $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Connor Behan <connor.behan@gmail.com>
@@ -11,7 +11,7 @@ arch=(i686 x86_64)
license=('CUSTOM')
depends=('libtiff' 'python2' 'lcms')
url="http://www.littlecms.com"
-options=('!libtool' 'force')
+options=('!libtool')
source=(http://downloads.sourceforge.net/project/lcms/lcms/${_mver}/lcms-$pkgver.tar.gz)
md5sums=('8af94611baf20d9646c7c2c285859818')
diff --git a/community/shntool/PKGBUILD b/community/shntool/PKGBUILD
index 1d8db06de..ea261ecea 100644
--- a/community/shntool/PKGBUILD
+++ b/community/shntool/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=shntool
pkgver=3.0.10
-pkgrel=1
+pkgrel=2
pkgdesc="A multi-purpose WAVE data processing and reporting utility"
arch=('i686' 'x86_64')
url="http://www.etree.org/shnutils/shntool/"
@@ -15,13 +15,13 @@ md5sums=('5d41f8f42c3c15e3145a7a43539c3eae')
sha1sums=('7a2bc8801e180cf582f0e39775603582e35d50d2')
build() {
- cd ${pkgname}-${pkgver}
+ cd "${srcdir}"/${pkgname}-${pkgver}
./configure --prefix=/usr
make
}
package() {
- cd ${pkgname}-${pkgver}
- make DESTDIR=${pkgdir} install
+ cd "${srcdir}"/${pkgname}-${pkgver}
+ make DESTDIR="${pkgdir}" install
}
# vim:set ts=2 sw=2 et: