aurutils: fix cd call

This commit is contained in:
Alad Wenter 2020-11-03 17:05:41 +01:00
parent a0813d550a
commit de0df83c44
2 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
pkgbase = aurutils
pkgdesc = helper tools for the arch user repository
pkgver = 3.0.3
pkgrel = 1
pkgrel = 2
url = https://github.com/AladW/aurutils
changelog = aurutils.changelog
arch = any

View File

@ -1,7 +1,7 @@
# Maintainer: Alad Wenter <https://github.com/AladW>
pkgname=aurutils
pkgver=3.0.3
pkgrel=1
pkgrel=2
pkgdesc='helper tools for the arch user repository'
url='https://github.com/AladW/aurutils'
arch=('any')
@ -26,11 +26,11 @@ prepare() {
}
build() {
cd aurutils
cd "$pkgname-$pkgver"
make
}
package() {
cd aurutils
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
}