mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
community/distcc to 3.1-9
This commit is contained in:
parent
f66888477b
commit
5bf4a979eb
3 changed files with 8 additions and 7 deletions
|
@ -10,13 +10,13 @@
|
||||||
|
|
||||||
pkgname=distcc
|
pkgname=distcc
|
||||||
pkgver=3.1
|
pkgver=3.1
|
||||||
pkgrel=8
|
pkgrel=9
|
||||||
pkgdesc="A distributed C, C++, Obj C compiler"
|
pkgdesc="A distributed C, C++, Obj C compiler"
|
||||||
arch=('i686' 'x86_64')
|
arch=('i686' 'x86_64')
|
||||||
url="http://code.google.com/p/distcc/"
|
url="http://code.google.com/p/distcc/"
|
||||||
license=('GPL')
|
license=('GPL')
|
||||||
depends=('gcc' 'popt')
|
depends=('gcc' 'popt')
|
||||||
makedepends=('pkgconfig' 'python2')
|
makedepends=('pkgconfig' 'python2' 'dbus')
|
||||||
optdepends=('python2')
|
optdepends=('python2')
|
||||||
backup=(etc/conf.d/distccd)
|
backup=(etc/conf.d/distccd)
|
||||||
source=(http://distcc.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2
|
source=(http://distcc.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2
|
||||||
|
@ -26,8 +26,8 @@ source=(http://distcc.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2
|
||||||
alarm.patch)
|
alarm.patch)
|
||||||
md5sums=('a1a9d3853df7133669fffec2a9aab9f3'
|
md5sums=('a1a9d3853df7133669fffec2a9aab9f3'
|
||||||
'1c918474372c09304772c20c4de484fa'
|
'1c918474372c09304772c20c4de484fa'
|
||||||
'89aaf6e9072092e283465a14e83f0f94'
|
'239aae53250e3e35288cba566bc0bbf1'
|
||||||
'bb24748257d9b0739e18b494cae08633'
|
'09f0688da9c1840e518d2593bd5c3830'
|
||||||
'5cdf2b5be232a9da1d473e36dda978a0')
|
'5cdf2b5be232a9da1d473e36dda978a0')
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
|
|
|
@ -4,5 +4,4 @@
|
||||||
# You must explicitly add IPs (or subnets) that are allowed to connect,
|
# You must explicitly add IPs (or subnets) that are allowed to connect,
|
||||||
# using the --allow switch. See the distccd manpage for more info.
|
# using the --allow switch. See the distccd manpage for more info.
|
||||||
#
|
#
|
||||||
DISTCC_ARGS="--user nobody --allow 127.0.0.1"
|
DISTCC_ARGS="--allow 127.0.0.1"
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,12 @@
|
||||||
[Unit]
|
[Unit]
|
||||||
Description=A distributed C/C++ compiler
|
Description=A distributed C/C++ compiler
|
||||||
Documentation=man:distccd(1)
|
Documentation=man:distccd(1)
|
||||||
|
After=network.target
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
|
User=nobody
|
||||||
EnvironmentFile=/etc/conf.d/distccd
|
EnvironmentFile=/etc/conf.d/distccd
|
||||||
ExecStart=/usr/bin/distccd --daemon --no-detach $DISTCC_ARGS
|
ExecStart=/usr/bin/distccd --no-detach --daemon $DISTCC_ARGS
|
||||||
|
|
||||||
[Install]
|
[Install]
|
||||||
WantedBy=multi-user.target
|
WantedBy=multi-user.target
|
||||||
|
|
Loading…
Reference in a new issue