mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
23 lines
784 B
Bash
23 lines
784 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
|
|
# Contributor: Alessio 'mOLOk' Bolognino <themolok@gmail.com>
|
|
|
|
pkgname=sopcast
|
|
pkgver=3.0.1
|
|
pkgrel=2
|
|
pkgdesc="The Streaming Direct Broadcast System based on P2P"
|
|
arch=('i686') # Binary app, doesn't work on x86_64
|
|
url="http://www.sopcast.org"
|
|
license=('custom')
|
|
depends=(libstdc++5)
|
|
source=(http://download.sopcast.com/download/sp-auth.tgz license)
|
|
md5sums=('5d1fbdd6d39a0d4c33a8e8500d43361f' 'cd4c2f7795918cdb02550a6e0ee939a4')
|
|
install=sopcast.install
|
|
|
|
build() {
|
|
install -D -m755 sp-auth/sp-sc-auth $pkgdir/usr/bin/sp-sc-auth
|
|
ln -s sp-sc-auth $pkgdir/usr/bin/sopcast
|
|
ln -s sp-sc-auth $pkgdir/usr/bin/sp-sc
|
|
install -D license $pkgdir/usr/share/licenses/sopcast/COPYING
|
|
}
|
|
|