mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
62 lines
2 KiB
Bash
62 lines
2 KiB
Bash
# $Id: PKGBUILD 57046 2011-10-19 10:30:08Z spupykin $
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Maintainer: Judd Vinet <jvinet@zeroflux.org>
|
|
# Contributor: Giovanni Scafora <giovanni@archlinux.org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@plugapps.com>
|
|
# - added --without-avahi to configure
|
|
# - removed gtk2 from deps and --with-gtk from configure
|
|
# - added patch to provide user-configurable IO timeouts (credit: Sascha Demetrio)
|
|
|
|
plugrel=1
|
|
|
|
pkgname=distcc
|
|
pkgver=3.1
|
|
pkgrel=7
|
|
pkgdesc="A distributed C, C++, Obj C compiler"
|
|
arch=('i686' 'x86_64')
|
|
url="http://code.google.com/p/distcc/"
|
|
license=('GPL')
|
|
depends=('gcc' 'popt')
|
|
makedepends=('pkgconfig' 'python2')
|
|
optdepends=('python2')
|
|
backup=(etc/conf.d/distccd)
|
|
source=(http://distcc.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2
|
|
distccd
|
|
distccd.conf.d
|
|
alarm.patch)
|
|
md5sums=('a1a9d3853df7133669fffec2a9aab9f3'
|
|
'1c918474372c09304772c20c4de484fa'
|
|
'89aaf6e9072092e283465a14e83f0f94'
|
|
'5cdf2b5be232a9da1d473e36dda978a0')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
patch -p1 -i ${srcdir}/alarm.patch
|
|
[ -f Makefile ] || PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--without-avahi \
|
|
|
|
make WERROR_CFLAGS= INCLUDESERVER_PYTHON=/usr/bin/python2
|
|
}
|
|
|
|
check() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
# make TEST_PYTHON=/usr/bin/python2 check
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}/" INCLUDESERVER_PYTHON=/usr/bin/python2 install
|
|
install -D -m644 ${srcdir}/distccd.conf.d ${pkgdir}/etc/conf.d/distccd
|
|
install -D -m755 ${srcdir}/distccd ${pkgdir}/etc/rc.d/distccd
|
|
|
|
install -d ${pkgdir}/usr/lib/${pkgname}/bin
|
|
ln -sf /usr/bin/${pkgname} ${pkgdir}/usr/lib/${pkgname}/bin/cc
|
|
ln -sf /usr/bin/${pkgname} ${pkgdir}/usr/lib/${pkgname}/bin/gcc
|
|
ln -sf /usr/bin/${pkgname} ${pkgdir}/usr/lib/${pkgname}/bin/g++
|
|
ln -sf /usr/bin/${pkgname} ${pkgdir}/usr/lib/${pkgname}/bin/c++
|
|
ln -sf /usr/bin/${pkgname} ${pkgdir}/usr/lib/${pkgname}/bin/cpp
|
|
}
|