blob: 22ebdf8bfea4f380bd26172162b2699cde34a60a (
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
|
#Maintainer: Konrad Partas <konparta at gmail dot com>
pkgname=foxaur
pkgver=0.0.3
pkgrel=1
pkgdesc="Pacman wrapper and AUR helper to keep it simple."
arch=('any')
url="https://gitlab.com/foxaur/foxaur"
license=('GNU General Public License v3.0')
depends=(
'python>=3.7'
'pacman'
'git'
)
source=(
"${pkgname}-${pkgver}.tar.gz::https://gitlab.com/foxaur/foxaur/-/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz"
)
md5sums=(
"SKIP"
)
build() {
cd ${srcdir}/${pkgname}-${pkgver}
python setup.py build
}
package() {
cd ${srcdir}/${pkgname}-${pkgver}
python setup.py install --root="$pkgdir/" --skip-build
}
|