mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-04 23:42:07 +01:00
41 lines
1016 B
Plaintext
41 lines
1016 B
Plaintext
# Contributor: David Demelier <markand@malikania.fr>
|
|
# Maintainer: David Demelier <markand@malikania.fr>
|
|
pkgname=amsynth
|
|
pkgver=1.12.2
|
|
pkgrel=0
|
|
pkgdesc="easy-to-use software synth with a classic subtractive synthesizer topology"
|
|
url="https://amsynth.github.io"
|
|
arch="all"
|
|
license="GPL-2.0-only"
|
|
depends="libintl"
|
|
makedepends="alsa-lib-dev gettext-dev gtk+2.0-dev jack-dev lv2-dev"
|
|
subpackages="$pkgname-lang $pkgname-lv2"
|
|
source="https://github.com/amsynth/amsynth/releases/download/release-$pkgver/amsynth-$pkgver.tar.gz"
|
|
|
|
build() {
|
|
LDFLAGS="-lintl $LDFLAGS"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--localstatedir=/var
|
|
make
|
|
}
|
|
|
|
check() {
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
lv2() {
|
|
pkgdesc="amsynth (LV2 plugins)"
|
|
amove usr/lib/lv2/*
|
|
}
|
|
|
|
sha512sums="a1eef3d5a0d0f0ec1edb93d89b3e456ea133a8445a9be73ba338771ae651a2008aea8dd077a9bcf0cd50e6bcc97ad98ab4c44a9baefd9f3381287afdf3325e8f amsynth-1.12.2.tar.gz"
|