#Packager: George Vlahavas pkgname=boinc pkgver=7.8.6 pkgrel=1gv source=("boinc-$pkgver.tar.xz") docs=("readme" "install" "copying" "changelog" "authors" "news" "todo") url=https://boinc.berkeley.edu options=("nosrcpack" "noautodotnew") slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "boinc" "BOINC is a program that lets you donate your idle computer time to" "science projects like SETI@home, Climateprediction.net, Rosetta@home," "World Community Grid, and many others. After installing BOINC on your" "computer, you can connect it to as many of these projects as you like." ) build() { cd $startdir/src/$pkgname-$pkgver ./_autosetup ./configure --prefix=/usr \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --localstatedir=/var \ --sysconfdir=/etc \ --enable-libraries \ --enable-unicode \ --enable-shared \ --enable-dynamic-client-linkage \ --enable-client \ --enable-manager \ --disable-static \ --disable-server \ --with-ssl \ --with-x \ --build=$arch-slackware-linux make -j $numjobs || return 1 make install DESTDIR=$startdir/pkg # remove init.d scripts rm -rf $startdir/pkg/etc }