summaryrefslogtreecommitdiff
path: root/community/vyqchat
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-02-21 23:15:10 +0000
committerroot <root@rshg054.dnsready.net>2012-02-21 23:15:10 +0000
commit1f55cedf5ea357497d2a98eb2be78d8dab4a9665 (patch)
tree5e44ad19f2672ee92283377c9fe6eab3c8a815d7 /community/vyqchat
parent11484c032f8c236b2044e715a9a3b28e33f65598 (diff)
Tue Feb 21 23:15:10 UTC 2012
Diffstat (limited to 'community/vyqchat')
-rw-r--r--community/vyqchat/PKGBUILD16
1 files changed, 8 insertions, 8 deletions
diff --git a/community/vyqchat/PKGBUILD b/community/vyqchat/PKGBUILD
index 8bffed66f..9e8a0dc5a 100644
--- a/community/vyqchat/PKGBUILD
+++ b/community/vyqchat/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 14449 2010-04-03 16:01:29Z foutrelis $
+# $Id: PKGBUILD 65377 2012-02-21 02:28:00Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
pkgname=vyqchat
pkgver=0.2.8
-pkgrel=3
+pkgrel=4
pkgdesc="vypress compatible qt chat (can work without server)"
arch=('i686' 'x86_64')
url="http://linux.bydg.org/~yogin/"
@@ -16,14 +16,14 @@ md5sums=('67974bc5df1ed0d63785d04325444d4f' 'de3af70da3743c27929f04f72c837412')
build() {
. /etc/profile.d/qt3.sh
- cd ${startdir}/src/$pkgname-${pkgver}
+ cd $srcdir/$pkgname-${pkgver}
patch -Np1 <../build-fix.patch
# Use _LDADD to properly compile with --as-needed
- sed -i 's/vyqchat_LDFLAGS/vyqchat_LDADD/' src/Makefile.am || return 1
+ sed -i 's/vyqchat_LDFLAGS/vyqchat_LDADD/' src/Makefile.am
# Correct acinclude.m4 to avoid empty else block
- sed -i 's:# Leave bnv_qt_lib_dir defined:/bin/true:' acinclude.m4 || return 1
- autoreconf -v || return 1
+ sed -i 's:# Leave bnv_qt_lib_dir defined:/bin/true:' acinclude.m4
+ autoreconf -v
./configure --prefix=/usr
- make || return 1
- make DESTDIR=$startdir/pkg install || return 1
+ make
+ make DESTDIR=$pkgdir install
}