mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 15:47:15 +08:00
e46c7bdb0d
- other rebuilds might be needed
33 lines
897 B
Bash
33 lines
897 B
Bash
#
|
|
# 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
|
|
|
|
pkgname=libshout
|
|
pkgver=2.3.0
|
|
pkgrel=1
|
|
epoch=1
|
|
pkgdesc="Library for accessing a shoutcast/icecast server"
|
|
arch=('i686' 'x86_64')
|
|
depends=('libvorbis' 'libtheora' 'speex')
|
|
url="http://www.icecast.org/"
|
|
options=('!libtool' 'force')
|
|
license=('LGPL')
|
|
source=(http://downloads.xiph.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('976a5979505f3de4026ae7fffb10754b')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
|
|
make LDFLAGS+=-lspeex
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|