Last active
March 28, 2016 12:23
-
-
Save ShalokShalom/dd425f209d734e8e1a3c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pkgname=musikernel2 | |
pkgver=16.02.1 | |
pkgrel=1 | |
pkgdesc="DAW and suite of instrument & effect plugins" | |
arch=('x86_64') | |
url="https://github.com/j3ffhubb/musikernel" | |
license=('GPL3') | |
depends=('ffmpeg' 'lame' 'libisofs' 'liblo' 'portaudio-svn' 'portmidi' | |
'python3-numpy' 'pyqt5-python3' | |
'rubberband' 'sbsms' 'squashfs-tools' 'vorbis-tools') | |
makedepends=('gdb' 'git') | |
source=(https://github.com/j3ffhubb/musikernel/archive/${pkgname}-${pkgver}.tar.gz) | |
sha256sums=(SKIP) | |
pkgver() { | |
cd ${pkgname} | |
git describe --long --tags | sed 's/^musikernel//;s/\([^-]*-g\)/r\1/;s/-/./g' | |
} | |
build(){ | |
cd ${pkgname}/src | |
make PREFIX="/usr" | |
} | |
package() { | |
cd ${pkgname}/src | |
make DESTDIR=${pkgdir} install | |
# remove setuid/setgid | |
chmod 755 ${pkgdir}/usr/bin/musikernel2-engine | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment