blob: 75a5d2095732f4fbed2e0ab35b597490b6b5c642 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Maintainer: mark.blakeney at bullet-systems dot net
pkgname=gnucash-select
pkgver=2.5
pkgrel=1
pkgdesc="GnuCash File Selector"
url="https://github.com/bulletmark/$pkgname"
license=("GPL3")
arch=("any")
depends=("python>=3.8")
source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
md5sums=('170420dc02d0a098cec3a7f4828dbd09')
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
}
# vim:set ts=2 sw=2 et:
|