aurutils: fix cd call
This commit is contained in:
parent
a0813d550a
commit
de0df83c44
2 changed files with 4 additions and 4 deletions
2
.SRCINFO
2
.SRCINFO
|
@ -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
|
||||||
|
|
6
PKGBUILD
6
PKGBUILD
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue