diff options
Diffstat (limited to 'community')
-rw-r--r-- | community/cutter/PKGBUILD | 5 | ||||
-rw-r--r-- | community/libmemcached/PKGBUILD | 6 | ||||
-rw-r--r-- | community/pidgin-talkfilters/PKGBUILD | 27 |
3 files changed, 33 insertions, 5 deletions
diff --git a/community/cutter/PKGBUILD b/community/cutter/PKGBUILD index b59a652f7..80c13857f 100644 --- a/community/cutter/PKGBUILD +++ b/community/cutter/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 65098 2012-02-20 03:38:53Z spupykin $ +# $Id: PKGBUILD 71088 2012-05-23 18:06:28Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com> pkgname=cutter pkgver=1.03 -pkgrel=4 +pkgrel=5 pkgdesc="TCP/IP Connection cutting on Linux Firewalls and Routers" arch=('i686' 'x86_64') url="http://www.lowth.com/cutter/" @@ -15,6 +15,7 @@ md5sums=('50093db9b64277643969ee75b83ebbd1') build() { cd $srcdir/$pkgname-$pkgver + sed -i 's|/proc/net/ip_conntrack|/proc/net/nf_conntrack|g' cutter.c make install -D -m 0755 ./cutter $pkgdir/usr/bin/tcp-cutter } diff --git a/community/libmemcached/PKGBUILD b/community/libmemcached/PKGBUILD index ac17b81f1..4f8085581 100644 --- a/community/libmemcached/PKGBUILD +++ b/community/libmemcached/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 70077 2012-04-29 03:10:00Z foutrelis $ +# $Id: PKGBUILD 71092 2012-05-23 19:58:18Z foutrelis $ # Maintainer: Evangelos Foutras <evangelos@foutrelis.com> pkgname=libmemcached -pkgver=1.0.7 +pkgver=1.0.8 pkgrel=1 pkgdesc="C and C++ client library to the memcached server" arch=('i686' 'x86_64') @@ -12,7 +12,7 @@ depends=('glibc' 'libsasl' 'libevent') makedepends=('perl') options=('!libtool') source=(http://launchpad.net/$pkgname/1.0/$pkgver/+download/$pkgname-$pkgver.tar.gz) -sha256sums=('3efa86c9733eaad55d7119cb16769424e2aa6c22b3392e8f973946fce6678d81') +sha256sums=('03f4eb91634f1434a93d4709eccd0c4cce3eb296b54f2b1998ca4a9ce1661ca5') build() { cd "$srcdir/$pkgname-$pkgver" diff --git a/community/pidgin-talkfilters/PKGBUILD b/community/pidgin-talkfilters/PKGBUILD new file mode 100644 index 000000000..39a171c78 --- /dev/null +++ b/community/pidgin-talkfilters/PKGBUILD @@ -0,0 +1,27 @@ +# Maintainer: Connor Behan <connor.behan@gmail.com> + +pkgname=pidgin-talkfilters +pkgver=2.7.0 +pkgrel=1 +pkgdesc="Implements GNU Talkfilters in pidgin chats" +arch=(i686 x86_64) +url="http://www.guifications.org/projects/purple-plugin-pack" +license=('GPL') +depends=('pidgin' 'talkfilters') +makedepends=('intltool' 'gettext' 'python2') +options=(!libtool) +source=(https://www.guifications.org/attachments/download/201/purple-plugin-pack-${pkgver}.tar.bz2) + +build() { + cd "$srcdir"/purple-plugin-pack-${pkgver} + PYTHON=/usr/bin/python2 ./configure --prefix=/usr --with-plugins=talkfilters + make +} + +package() { + cd "$srcdir"/purple-plugin-pack-${pkgver} + make DESTDIR="$pkgdir" install + rm -rf "${pkgdir}"/usr/share +} + +md5sums=('a1ee405e81ad955798af7b2a6a8564fb') |