Commit b27fa05d authored by Seblu's avatar Seblu
Browse files

add python2-shout

add deefuzer


git-svn-id: https://seblu.net/s/archpkg@141 02741741-5192-46b8-8916-7152b19231d9
parent 36073afe
Loading
Loading
Loading
Loading

deefuzzer/PKGBUILD

0 → 100644
+23 −0
Original line number Diff line number Diff line
# Maintainer: Sebastien Luttringer <seblu+arch@seblu.net>

pkgname=deefuzzer
pkgver=0.5.4
pkgrel=1
pkgdesc='Easy and instant media streaming tool'
arch=('any')
url='http://svn.parisson.org/deefuzzer'
license=('custom:CeCILL')
depends=('python2-distribute' 'python2-shout')
optdepends=('python2-twitter' 'python-tinyurl' 'python-pyliblo')
source=("http://debian.parisson.org/$pkgname-$pkgver.tar.gz")
md5sums=('92863a72b00fd75deac331132ce29ea7')

package() {
  cd $pkgname-$pkgver
  python2 setup.py install --root="$pkgdir"

  # setup license
  install -D -m 644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}

# vim:set ts=2 sw=2 ft=sh et:

python2-shout/PKGBUILD

0 → 100644
+19 −0
Original line number Diff line number Diff line
# Maintainer: Sebastien Luttringer <seblu+arch@seblu.net>

pkgname=python2-shout
pkgver=0.2
pkgrel=1
pkgdesc='Python2 bindings for libshout'
arch=('i686' 'x86_64')
url='http://www.icecast.org'
license=('LGPL2')
depends=('libshout' 'python2')
source=("http://downloads.us.xiph.org/releases/libshout/shout-python-$pkgver.tar.gz")
md5sums=('80bec97a1462c2d2a9282ba8a7c18336')

package() {
  cd shout-python-$pkgver
  python2 setup.py install --root="$pkgdir"
}

# vim:set ts=2 sw=2 ft=sh et: