blob: 10893c183c7a48af70f1c9297ab25b00f3e5ba35 (
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
32
33
|
# Maintainer: Jose Riha <jose1711 gmail com>
# Contributor: Genki Sky <alt+archlinux.org@genki.is>
pkgname=lingot-git
pkgver=20201229.a7d2b6c
pkgrel=2
pkgdesc='musical instrument tuner (git)'
arch=(i686 x86_64)
url='http://nongnu.org/lingot/'
license=('GPL2')
depends=('gtk3')
makedepends=('git' 'intltool')
provides=('lingot')
conflicts=('lingot')
source=('git+https://git.savannah.nongnu.org/git/lingot.git')
md5sums=('SKIP')
pkgver() {
cd lingot
git log -1 --format='%cd.%h' --date=short | tr -d -
}
build() {
cd lingot
./bootstrap
./configure --prefix=/usr --localedir=/usr/share/locale
make
}
package() {
cd lingot
make DESTDIR="$pkgdir" install
}
|