summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: fdc95f3e2ed37ab5cce687078ca0a056bc2fba4e (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
30
31
# Maintainer: quomoow <quomoow@gmail.com>
# Contributor: Sean Bartell <archlinux@yotann.org>

pkgname=seq24-bzr
pkgver=0.9.3
pkgrel=1
pkgdesc="A pattern-based midi sequencer with strong live performance functions"
arch=('i686' 'x86_64')
url="http://launchpad.net/seq24"
license=('GPL')
depends=('gtkmm>=2.4.0')
makedepends=('bzr')
provides=('seq24')
conflicts=('seq24')
source=("bzr+http://bazaar.launchpad.net/~${pkgname}team/${pkgname}/trunk")
md5sums=('SKIP')

build() {
    cd trunk

    autoreconf -i
    CXXFLAGS="-O2 -std=c++11"
    ./configure --prefix=/usr --disable-lash
    make
}

package() {
    cd trunk

    make DESTDIR="$pkgdir/" install
}