summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 55245b00f553710518461691bd3705c0dbe919ac (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: Luna Jernberg <lunajernberg@gnome.org>


pkgname=garagejam
pkgver=1.0.0
pkgrel=1
pkgdesc="GarageJam is Free Software in development for musicians who want to compose, record and share original music to the Internet from the GNOME Desktop."
arch=('x86_64')
url="https://wiki.gnome.org/Apps/GarageJam"
license=(GPL3)
depends=('libchamplain' 'geoclue' 'gst-plugins-base' 'gst-plugins-bad' 'geocode-glib' 'geocode-glib-2' 'gobject-introspection' 'gstreamer' 'libxml2' 'vorbis-tools' 'pango' 'gtk3')
makedepends=('intltool' 'itstool' 'python')
source=(https://www.garagejam.org/src/garagejam-1.0.0.tar.xz)
sha256sums=('b7008972b167df451b6db9b4cf39b0576d70631f14563b70405cf8f113ed98af')

build() {
  cd $pkgname-$pkgver
  ./configure --prefix=/usr --with-recording
  make
}

check(){
  cd $pkgname-$pkgver
  make check -k
}

package(){
  cd $pkgname-$pkgver
  make DESTDIR="$pkgdir" install
}