mirror of
https://gitdl.cn/https://github.com/chakralinux/gtk.git
synced 2025-02-04 06:07:16 +08:00
26 lines
715 B
Bash
26 lines
715 B
Bash
# Contributor: Gene Kodadek <gkodadek@gmail.com>
|
|
|
|
pkgname=jamin
|
|
pkgver=0.95.0
|
|
pkgrel=2
|
|
pkgdesc="A JACK Audio Connection Kit Audio Mastering interface"
|
|
arch=('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=/usr --mandir=/usr/share
|
|
make CFLAGS="${CFLAGS} -ldl"
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
} |