mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 08:57:14 +08:00
live-media update, missing function in vlc, vlc rebuild for it
This commit is contained in:
parent
aa3ff4ff0f
commit
8554a14a48
@ -1,36 +1,41 @@
|
||||
# $Id: PKGBUILD 71821 2010-03-09 22:49:20Z giovanni $
|
||||
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
|
||||
# Contributor: Gilles CHAUVIN <gcnweb@gmail.com>
|
||||
#
|
||||
# Chakra Packages for Chakra, part of chakra-project.org
|
||||
#
|
||||
# maintainer : abveritas[at]chakra-project[dot]org>
|
||||
|
||||
pkgname=live-media
|
||||
pkgver=2010.03.08
|
||||
pkgver=2012.04.04
|
||||
pkgrel=1
|
||||
pkgdesc="A set of C++ libraries for multimedia streaming"
|
||||
arch=('i686' 'x86_64')
|
||||
license=('LGPL')
|
||||
url="http://live555.com/liveMedia"
|
||||
depends=('gcc-libs')
|
||||
source=(ftp://ftp.archlinux.org/other/live-media/live.${pkgver}.tar.gz)
|
||||
md5sums=('2c685c004695afce064ec780e58409cc')
|
||||
source=("http://live555.com/liveMedia/public/live.${pkgver}.tar.gz")
|
||||
md5sums=('25ad098a6e4a2e329ca6295a9ba27074')
|
||||
|
||||
build()
|
||||
{
|
||||
build() {
|
||||
cd ${srcdir}/live
|
||||
sed \
|
||||
-e 's/$(INCLUDES) -I. -O2 -DSOCKLEN_T/$(INCLUDES) -I. -O2 -I. -fPIC -DSOCKLEN_T/g' \
|
||||
-e 's/\(LIBRARY_LINK =\).*/\1 $(LD) -o/g' \
|
||||
-e 's/\(LIBRARY_LINK_OPTS =\).*/\1 $(LINK_OPTS) -r -Bstatic/g' \
|
||||
-i config.linux
|
||||
|
||||
sed \
|
||||
-e 's/$(INCLUDES) -I. -O2 -DSOCKLEN_T/$(INCLUDES) -I. -O2 -I. -fPIC -DRTSPCLIENT_SYNCHRONOUS_INTERFACE=1 -DSOCKLEN_T/g' \
|
||||
-e 's/\(LIBRARY_LINK =\).*/\1 $(LD) -o/g' \
|
||||
-e 's/\(LIBRARY_LINK_OPTS =\).*/\1 $(LINK_OPTS) -r -Bstatic/g' \
|
||||
-i config.linux
|
||||
./genMakefiles linux
|
||||
make || return 1
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd ${srcdir}/live
|
||||
|
||||
for dir in BasicUsageEnvironment UsageEnvironment groupsock liveMedia; do
|
||||
mkdir -p ${pkgdir}/usr/lib/live/${dir}
|
||||
cp -r ${dir}/*.a ${dir}/include ${pkgdir}/usr/lib/live/${dir}
|
||||
install -dm755 ${pkgdir}/usr/{bin,lib,include/${dir}}
|
||||
install -m644 ${dir}/*.a "${pkgdir}/usr/lib"
|
||||
install -m644 ${dir}/include/*.h* "${pkgdir}/usr/include/${dir}"
|
||||
done
|
||||
|
||||
mkdir -p ${pkgdir}/usr/bin
|
||||
for testprog in `find testProgs -type f -perm 755`; do
|
||||
install ${testprog} ${pkgdir}/usr/bin
|
||||
install ${testprog} "${pkgdir}/usr/bin"
|
||||
done
|
||||
}
|
||||
|
@ -1,15 +1,11 @@
|
||||
#
|
||||
# Platform Packages for Chakra, part of chakra-project.org
|
||||
#
|
||||
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
||||
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
||||
|
||||
# include global config
|
||||
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
||||
# maintainer abveritas@chakra-project.org
|
||||
|
||||
pkgname='vlc'
|
||||
pkgver=2.0.1
|
||||
pkgrel=1
|
||||
pkgrel=2
|
||||
arch=('i686' 'x86_64')
|
||||
url="http://www.videolan.org/vlc/"
|
||||
license=('GPL')
|
||||
|
Loading…
Reference in New Issue
Block a user