mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 19:57:14 +08:00
38 lines
1.1 KiB
Bash
38 lines
1.1 KiB
Bash
#
|
|
# Chakra 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=dssi
|
|
pkgver=1.1.1
|
|
pkgrel=3
|
|
pkgdesc="An API for audio plugins, with particular application for software synthesis plugins with native user interfaces."
|
|
arch=("i686" "x86_64")
|
|
url="http://dssi.sourceforge.net/"
|
|
license=('LGPL' 'BSD' 'custom')
|
|
depends=('gcc-libs' 'liblo' 'jack-audio-connection-kit' 'libsamplerate' 'libx11')
|
|
makedepends=('ladspa' 'pkgconfig' 'qt')
|
|
options=('!libtool')
|
|
source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz
|
|
'LICENSE')
|
|
md5sums=('619ab73c883b02dc37ddb37001591f8b'
|
|
'258ca4d0ca28c5c4d4675147621fac18')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
install -Dm644 "$srcdir/LICENSE" \
|
|
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
|
}
|