mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
26 lines
793 B
Bash
26 lines
793 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Neo Kolokotronis <tetris4@gmail.com>
|
|
|
|
pkgname=sopcast
|
|
pkgver=3.4.0
|
|
pkgrel=1
|
|
pkgdesc="The Streaming Direct Broadcast System based on P2P"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.sopcast.org"
|
|
license=('custom')
|
|
depends=('libstdc++5')
|
|
[ "${CARCH}" == "x86_64" ] && depends=('lib32-libstdc++5')
|
|
categories=('network')
|
|
source=(http://download.sopcast.com/download/sp-auth.tgz license)
|
|
md5sums=('db931c9237fc93756dab7284800fa43f'
|
|
'44ecefd6a3681879a9d84d7044570fcb')
|
|
install=sopcast.install
|
|
|
|
package() {
|
|
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
|
|
} |