blob: c565e54f01b5c302cc6d3d3224c0a2f9e2d69ba6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Maintainer: Felix Barz <skycoder42.de@gmx.de>
pkgname=qdep
pkgver=1.1.1
pkgrel=1
pkgdesc="A very basic yet simple to use dependency management tool for qmake based projects."
arch=('any')
url="https://github.com/Skycoder42/qdep"
license=('BSD')
install="$pkgname.install"
depends=('qt5-base' 'python' 'python-argcomplete' 'python-lockfile' 'python-appdirs')
optdepends=('qt5-tools: Needed for lupdate to generate qdep translations')
makedepends=('python-setuptools')
_pkgfqn=$pkgname-$pkgver
source=("$_pkgfqn::git+https://github.com/Skycoder42/qdep.git#tag=$pkgver")
sha256sums=('SKIP')
package() {
cd "$srcdir/$_pkgfqn"
python setup.py install --root="$pkgdir/" --optimize=1
install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
|