mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 03:57:14 +08:00
23 lines
751 B
Bash
23 lines
751 B
Bash
# $Id: PKGBUILD 63448 2010-01-17 14:53:27Z jgc $
|
|
# Maintainer: damir <damir@archlinux.org>
|
|
|
|
pkgname=libvisual-plugins
|
|
pkgver=0.4.0
|
|
pkgrel=3
|
|
pkgdesc="plugins for libvisual"
|
|
arch=("i686" "x86_64")
|
|
license=('GPL')
|
|
url="http://www.localhost.nl/~synap/libvisual/"
|
|
depends=('libvisual>=0.4.0' 'gtk2>=2.18.6' 'mesa>=7.7' 'alsa-lib' 'esound' 'jack-audio-connection-kit')
|
|
makedepends=(pkgconfig)
|
|
source=("http://downloads.sourceforge.net/sourceforge/libvisual/libvisual-plugins-${pkgver}.tar.gz")
|
|
md5sums=('4330e9287f9d6fae02f482f428a1e77b')
|
|
options=(!libtool)
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --enable-alsa --disable-gstreamer-plugin || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|