diff options
Diffstat (limited to 'libre/distcc-nozeroconf')
-rw-r--r-- | libre/distcc-nozeroconf/PKGBUILD | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/libre/distcc-nozeroconf/PKGBUILD b/libre/distcc-nozeroconf/PKGBUILD index 8c94ada02..bc6918301 100644 --- a/libre/distcc-nozeroconf/PKGBUILD +++ b/libre/distcc-nozeroconf/PKGBUILD @@ -7,12 +7,10 @@ _pkgname=distcc pkgname=distcc-nozeroconf pkgver=3.2rc1 -provides=("$_pkgname=$pkgver") -conflicts=("$_pkgname") -pkgrel=1 -pkgdesc="A distributed C, C++, Obj C compiler (without zeroconf support)" +pkgrel=2 +pkgdesc="A distributed C, C++, Obj C compiler" arch=('i686' 'x86_64' 'mips64el' 'armv7h') -url="http://code.google.com/p/distcc/" +url="https://github.com/distcc/distcc" license=('GPL') depends=('gcc' 'popt') makedepends=('gtk2' 'pkgconfig' 'python2') @@ -27,6 +25,10 @@ md5sums=('18cd4f33f5cfc3e75675cafc568fb9cf' '239aae53250e3e35288cba566bc0bbf1' '09f0688da9c1840e518d2593bd5c3830') +pkgdesc+=" (without zeroconf support)" +provides=("$_pkgname=$pkgver") +conflicts=("$_pkgname") + build() { cd "${srcdir}/${_pkgname}-${pkgver}" @@ -34,7 +36,8 @@ build() { --with-gtk \ --sysconfdir=/etc \ --mandir=/usr/share/man \ - --without-avahi + --without-avahi \ + --enable-rfc2553 make WERROR_CFLAGS= INCLUDESERVER_PYTHON=/usr/bin/python2 } |