mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 19:57:14 +08:00
29 lines
739 B
Bash
29 lines
739 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Contributor: abveritas@chakra-project.org
|
|
# Maintainer: BrLi <rainman59118[at]Gmail.com>
|
|
|
|
pkgname=libshout
|
|
pkgver=2.3.1
|
|
pkgrel=4
|
|
pkgdesc="Library for accessing a shoutcast/icecast server"
|
|
arch=('x86_64')
|
|
depends=('libvorbis' 'libtheora' 'speex')
|
|
url="http://www.icecast.org/"
|
|
options=('!libtool')
|
|
license=('LGPL')
|
|
source=("http://downloads.xiph.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('11765b2592e7ea623ccd93d3f8df172c')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
|
|
make LDFLAGS+=-lspeex
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|