mirror of
https://gitdl.cn/https://github.com/chakralinux/gtk.git
synced 2025-02-13 23:19:06 +08:00
23 lines
679 B
Bash
23 lines
679 B
Bash
|
# Contributor: Gene Kodadek <gkodadek@gmail.com>
|
||
|
|
||
|
pkgname=jamin
|
||
|
pkgver=0.95.0
|
||
|
pkgrel=1
|
||
|
pkgdesc="A JACK Audio Connection Kit Audio Mastering interface"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://jamin.sourceforge.net/"
|
||
|
license=('GPL')
|
||
|
depends=('jack' 'libxml2' 'gtk2' 'swh-plugins' 'fftw' 'liblo')
|
||
|
makedepends=('perlxml' 'ladspa')
|
||
|
options=('!libtool')
|
||
|
install=${pkgname}.install
|
||
|
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
||
|
md5sums=('032f2a4a578a8938f76282112d56c8d6')
|
||
|
|
||
|
build() {
|
||
|
cd ${srcdir}/${pkgname}-${pkgver}
|
||
|
./configure --prefix=/extra/usr --mandir=/extra/usr/share
|
||
|
make CFLAGS="${CFLAGS} -ldl"
|
||
|
make DESTDIR=${pkgdir} install
|
||
|
}
|