Skip to content

Instantly share code, notes, and snippets.

@yantene
Created May 24, 2020 22:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yantene/304839898b19719cf49d1eb44014af7b to your computer and use it in GitHub Desktop.
Save yantene/304839898b19719cf49d1eb44014af7b to your computer and use it in GitHub Desktop.
# Maintainer: yantene <contact at yantene.net>
pkgname=takt
pkgver=0.310
pkgrel=1
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://excellmedia.dl.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
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment