mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 04:57:14 +08:00
25 lines
742 B
Bash
25 lines
742 B
Bash
|
#$Id: PKGBUILD 71359 2010-03-06 21:13:04Z jgc $
|
||
|
#Maintainer: Jan de Groot <jgc@archlinux.org>
|
||
|
|
||
|
pkgname=libmms
|
||
|
pkgver=0.5
|
||
|
pkgrel=2
|
||
|
pkgdesc="MMS stream protocol library"
|
||
|
arch=(i686 x86_64)
|
||
|
url="https://launchpad.net/libmms"
|
||
|
license=(LGPL)
|
||
|
depends=('glib2>=2.22.4')
|
||
|
options=('!libtool')
|
||
|
source=(http://launchpad.net/libmms/trunk/${pkgver}/+download/libmms-${pkgver}.tar.gz
|
||
|
libmms-0.5-this-keyword.patch)
|
||
|
md5sums=('cf83053ec891f14e73a04c84d9de08ee'
|
||
|
'5266259060f5723d8ee639b8a541f835')
|
||
|
|
||
|
build() {
|
||
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||
|
patch -Np1 -i "${srcdir}/libmms-0.5-this-keyword.patch" || return 1
|
||
|
./configure --prefix=/usr --disable-static || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR="${pkgdir}" install || return 1
|
||
|
}
|