blob: e1a554b5672f8e71459d628afb34e6b52e2c373f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Maintainer: yantene <contact at yantene.net>
pkgname=takt
pkgver=0.310
pkgrel=2
pkgdesc="A text-based music programming language designed by Satoshi Nishimura"
arch=('x86_64')
url="http://takt.sourceforge.net/"
license=('GPL' 'LGPL')
depends=('readline' 'alsa-lib')
source=("https://downloads.sourceforge.net/project/${pkgname}/${pkgname}-${pkgver}-src.tar.gz")
md5sums=('a128a4d295e91cfcde1f1a8a17d0ed26')
build() {
cd "$pkgname-$pkgver"
./configure --prefix=/usr
make
}
check() {
cd "$pkgname-$pkgver"
make check
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
}
|