summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 2a8786bfdc4d9281fb04cbce36cea753a31a2626 (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: Alexander Schmidt <alex@treefish.org>

pkgname=lingot-hg
pkgver=r374.7ed4f5d21d15
pkgrel=6
pkgdesc="LINGOT is a musical instrument tuner."
arch=('i686' 'x86_64')
url="http://www.nongnu.org/lingot/"
license=('GPL2')
source=('hg+http://hg.sv.gnu.org/hgweb/lingot')
depends=('gtk2' 'libglade')
makedepends=('mercurial' 'intltool')
md5sums=('SKIP')

pkgver() {
  cd $srcdir/lingot
  printf "r%s.%s" "$(hg identify -n)" "$(hg identify -i)"
}

build() {
  cd $srcdir/lingot
  ./configure --prefix=/usr
  make
}

package() {
  cd $srcdir/lingot
  make DESTDIR="$pkgdir" install 
}