#Maintainer: Frederic Boulet bipbiponlinux~AT~gmail.com #Former Maintainer: Shador #Former Maintainer: Mauricio Tricoli pkgname=compiz-plugins-unsupported pkgver=0.9.2.1 pkgrel=1 zenver=66 arch=i686 source=("http://releases.compiz.org/$pkgver/compiz-plugins-unsupported-$pkgver.tar.bz2") docs=("install" "copying" "authors" "news" "version") url="http://compiz-fusion.org" sourcetemplate="http://zenwalk.pinguix.com/user-accounts/bip/EXTRA/xap/$pkgname" extradepends="compiz-core" CFLAGS="-O2 -march=i686 -mtune=i686" CXXFLAGS="-O2 -march=i686 -mtune=i686" slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "$pkgname - unsupported plugins for Compiz" "Most of these plugins offer miscellaneous eye candy or special" "utilities, but they are either quick demonstrations with few features," "or likely to have bugs." ) build() { threadcount=$(($(sed -ne '/cpu cores/h;${g;s/[^0-9]*//p}' \ < /proc/cpuinfo)*2)) if [ $threadcount -lt 2 ]; then threadcount=2 elif [ $threadcount -gt 8 ]; then threadcount=8 fi cd $startdir/src/$pkgname-$pkgver mkdir -p build cd build cmake \ -DCMAKE_INSTALL_PREFIX:STRING="/usr" \ -DCMAKE_CXX_FLAGS:STRING="-O2 -march=i486 -mtune=i686" \ -DCMAKE_C_FLAGS:STRING="-O2 -march=i486 -mtune=i686" \ .. make || return 1 make install DESTDIR=$startdir/pkg }