mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 04:04:37 +08:00
28 lines
664 B
Bash
28 lines
664 B
Bash
# $Id: PKGBUILD 26434 2009-02-07 23:16:46Z eric $
|
|
# Maintainer: Eric Belanger <eric@archlinux.org>
|
|
# Contributor: Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=smpeg
|
|
pkgver=0.4.5
|
|
pkgrel=1
|
|
pkgdesc="SDL MPEG Player Library"
|
|
arch=('x86_64')
|
|
url="http://icculus.org/smpeg/"
|
|
license=('LGPL')
|
|
depends=('sdl')
|
|
makedepends=('mesa' 'glu' 'svn')
|
|
optdepends=('glu: to use glmovie')
|
|
source=("$pkgname-$pkgver::svn://svn.icculus.org/smpeg/tags/release_${pkgver//./_}")
|
|
md5sums=('SKIP')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./autogen.sh
|
|
./configure --prefix=/usr --mandir=/usr/share/man --disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR="$pkgdir" install
|
|
} |