PKGBUILDs/extra/gtick/PKGBUILD
2009-10-09 21:23:22 -05:00

21 lines
745 B
Bash

# $Id: PKGBUILD 26536 2009-02-08 23:06:30Z eric $
# Contributor: Damir Perisa <damir.perisa@bluewin.ch>
# Maintainer: damir <damir@archlinux.org>
pkgname=gtick
pkgver=0.4.2
pkgrel=1
pkgdesc="GTick is a metronome application supporting different meters (1/1, 2/4, 3/4, 4/4 and more) and speeds ranging from 10 to 1000 bpm. It utilizes GTK+ and OSS (ALSA compatible)."
arch=('i686' 'x86_64')
url="http://www.antcom.de/gtick/"
license=('GPL3')
depends=('libsndfile' 'gtk2')
source=("http://www.antcom.de/gtick/download/${pkgname}-${pkgver}.tar.gz")
md5sums=('e85ab8449219b515cc7731cd8b12ac9a')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
./configure --prefix=/usr || return 1
make || return 1
make DESTDIR=${pkgdir} install || return 1
}