# Maintainer: Gaetan Bisson # Contributor: Daenyth # Contributor: Jeff Mickey # Contributor: sh__ pkgname=libtorrent pkgver=0.13.2 pkgrel=1 pkgdesc='BitTorrent library with a focus on high performance and good code' url='http://libtorrent.rakshasa.no/' license=('GPL') arch=('i686' 'x86_64') depends=('libsigc++2.0' 'openssl') options=('!libtool') source=("http://libtorrent.rakshasa.no/downloads/${pkgname}-${pkgver}.tar.gz") sha1sums=('4f34a744fbe10c54aaf53d34681fabc1a49d7257') build() { cd "${srcdir}/${pkgname}-${pkgver}" export CXXFLAGS="${CXXFLAGS} -fno-strict-aliasing" ./configure \ --prefix=/usr \ --disable-debug \ make } package() { cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install }