summaryrefslogtreecommitdiff
path: root/community/libtorrent
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
committerroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
commit8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch)
tree03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/libtorrent
parente445a313723389ba9ee1fded025c567dae5b21ea (diff)
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/libtorrent')
-rw-r--r--community/libtorrent/PKGBUILD34
1 files changed, 34 insertions, 0 deletions
diff --git a/community/libtorrent/PKGBUILD b/community/libtorrent/PKGBUILD
new file mode 100644
index 000000000..01884fc7b
--- /dev/null
+++ b/community/libtorrent/PKGBUILD
@@ -0,0 +1,34 @@
+# $Id: PKGBUILD 90569 2013-05-13 09:41:28Z bisson $
+# Maintainer: Gaetan Bisson <bisson@archlinux.org>
+# Contributor: Daenyth <Daenyth+Arch [at] gmail [dot] com>
+# Contributor: Jeff Mickey <jeff@archlinux.org>
+# Contributor: sh__
+
+pkgname=libtorrent
+pkgver=0.13.3
+pkgrel=2
+pkgdesc='BitTorrent library with a focus on high performance and good code'
+url='http://libtorrent.rakshasa.no/'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('openssl')
+source=("http://libtorrent.rakshasa.no/downloads/${pkgname}-${pkgver}.tar.gz")
+sha1sums=('e65a20b9e6d5c04b4e0849543d58befb60d948b7')
+
+options=('!libtool')
+
+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
+}