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 pkgbase = aurutils
pkgdesc = helper tools for the arch user repository pkgdesc = helper tools for the arch user repository
pkgver = 3.0.3 pkgver = 3.0.3
pkgrel = 1 pkgrel = 2
url = https://github.com/AladW/aurutils url = https://github.com/AladW/aurutils
changelog = aurutils.changelog changelog = aurutils.changelog
arch = any arch = any

View file

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