diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-06-08 17:23:24 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-06-08 17:23:24 -0300 |
commit | da4865e38266a85c230abd569a95aa7152c4f9e9 (patch) | |
tree | 610329610e1d43cd175b799f48942201b718329d /community/prosody | |
parent | 19ae256a3867f63f4a1db7ed50da6f0bed71ec8d (diff) | |
parent | 4d91fc9a2dc38054b8748f27193dc3a6950bda3c (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community/luaexpat/PKGBUILD
community/qps/PKGBUILD
extra/python-egenix-mx-base/PKGBUILD
libre/thunderbird-libre/rePKGBUILD
staging/kdesdk/PKGBUILD
Diffstat (limited to 'community/prosody')
-rw-r--r-- | community/prosody/PKGBUILD | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/community/prosody/PKGBUILD b/community/prosody/PKGBUILD index 4e55a092c..34a000900 100644 --- a/community/prosody/PKGBUILD +++ b/community/prosody/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 44453 2011-04-07 16:06:39Z spupykin $ +# $Id: PKGBUILD 48848 2011-06-06 14:44:51Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: Dwayne Bent <dbb.0@liqd.org> # Contributor: Paul-Sebastian Manole <brokenthorn@gmail.com> pkgname=prosody -pkgver=0.8.0 +pkgver=0.8.1 pkgrel=1 pkgdesc="Lightweight and extensible Jabber/XMPP server written in Lua." arch=('i686' 'x86_64' 'mips64el') @@ -12,7 +12,8 @@ url="http://prosody.im/" license=('MIT') depends=('lua>=5.1' 'luasocket' 'luaexpat' 'luafilesystem' 'libidn>=0.5.18' 'openssl') optdepends=('luasec: TLS encryption support' - 'lua-zlib: compression support') + 'lua-zlib: compression support' + 'luadbi: SQL storage support') install=prosody.install backup=('etc/logrotate.d/prosody' 'etc/prosody/prosody.cfg.lua') @@ -20,19 +21,22 @@ source=("http://prosody.im/depot/${pkgver}/prosody-${pkgver}.tar.gz" 'prosody.rcd' 'prosody.logrotated' 'fix-config.patch') -md5sums=('8b057f62875b46b4a8061853a0953473' +md5sums=('2be3e9deed0b96f109efc5707d7728ba' 'd2b5f9c8e42bb31819e715eb1756ee53' '26466fdbea87963a3ca6f48f76fe4a29' '59a1bf2dfd0bd386cef6fa646e2a3752') build() { cd "$srcdir/prosody-$pkgver" - patch -p1 <$srcdir/fix-config.patch - ./configure --prefix=/usr --sysconfdir=/etc/prosody \ --datadir=/var/lib/prosody make +} + +package() { + cd "$srcdir/prosody-$pkgver" + make DESTDIR="$pkgdir" install rm $pkgdir/etc/prosody/certs/* |