contrib/distcc/Pkgfile

28 lines
645 B
Plaintext
Raw Normal View History

# Description: A tool to distribute compilations.
2008-05-07 11:15:32 +02:00
# URL: http://distcc.samba.org/
2008-03-26 03:45:31 +01:00
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
2007-04-10 21:56:44 +02:00
# Packager: Johannes Winkelmann, jw at tks6 dot net
# Depends on: popt
2007-04-10 21:56:44 +02:00
name=distcc
version=2.18.3
2008-05-07 11:15:32 +02:00
release=4
2007-04-10 21:56:44 +02:00
source=(http://distcc.samba.org/ftp/distcc/distcc-$version.tar.bz2 \
2008-05-07 11:15:32 +02:00
distcc-$version-install.patch distccd)
2007-04-10 21:56:44 +02:00
build() {
cd distcc-$version
2008-05-07 11:15:32 +02:00
patch -p 1 -i ../distcc-$version-install.patch
2007-04-10 21:56:44 +02:00
./configure \
--prefix=/usr \
--disable-nls \
--without-gnome \
2007-04-10 21:56:44 +02:00
--without-gtk
make
2008-05-07 11:15:32 +02:00
make DESTDIR=$PKG install-man install-programs
install -m 0755 -D ../distccd $PKG/etc/rc.d/distccd
2007-04-10 21:56:44 +02:00
}