blob: 8cd10e12cbe77d4b9880e9f3e82df7d827bae35e (
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
|
# Maintainer: morguldir <morguldir@protonmail.com>
pkgname=acquisition
pkgver=0.8b
pkgrel=1
pkgdesc='Inventory management tool for Path of Exile.'
arch=(x86_64)
license=(GPL)
url='https://github.com/xyzz/acquisition'
depends=(qt5-base qt5-webengine)
makedepends=(boost git)
provides=(acquisition)
source=("git+https://github.com/xyzz/acquisition#tag=$pkgver")
sha256sums=(SKIP)
build()
{
cd $pkgname
qmake && make
}
package()
{
cd $pkgname
mkdir -p "$pkgdir/usr/bin"
install -m755 "acquisition" "$pkgdir/usr/bin/acquisition"
}
|