summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: bbd9f4755c87dd660c8cc6d00f31defa06b5ea88 (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
# Maintainer: Anže Pintar <anze@anzepintar.com>

pkgname=anymeal
pkgver=1.32
pkgrel=1
pkgdesc="Recipe management software. Supports MealMaster recipes, import, export, search, display, edit, and printing them."
arch=('x86_64')
url="https://github.com/wedesoft/anymeal"
license=('GPL3')
depends=('sqlite' 'qt5-base')
makedepends=('autoconf' 'automake' 'libtool' 'flex' 'gtest' 'qt5-tools')
source=("$pkgname-$pkgver.tar.xz::https://github.com/wedesoft/anymeal/releases/download/v$pkgver/anymeal-$pkgver.tar.xz")
conflicts=("anymeal-git")
sha256sums=('b4a495ad69672c6b0fcdca88039a81c3d069b52d4f51fffeaac52de9709de4fa')

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

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