summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authormrxx2020-07-27 17:59:56 +0200
committermrxx2020-07-27 17:59:56 +0200
commit8a8e0b2aceea86310f50409531f40c470788dbbb (patch)
tree90d54b9cd01c95ac9799e1c87d11aac7ee194213
parentc60ea7d7e49eade54b1935826a3a003a2cc1617d (diff)
downloadaur-8a8e0b2aceea86310f50409531f40c470788dbbb.tar.gz
Remove build dir creation
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD6
2 files changed, 3 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 142cbe3fc067..1e0697607fec 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = musique
pkgdesc = A finely crafted music player
pkgver = 1.9
- pkgrel = 2
+ pkgrel = 3
url = https://flavio.tordini.org/musique
arch = x86_64
license = GPL3
diff --git a/PKGBUILD b/PKGBUILD
index a1548026a18d..44f3349af590 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -7,7 +7,7 @@
pkgname=musique
pkgver=1.9
-pkgrel=2
+pkgrel=3
pkgdesc='A finely crafted music player'
arch=('x86_64')
url='https://flavio.tordini.org/musique'
@@ -34,13 +34,11 @@ prepare() {
}
build() {
- mkdir -p build && cd build
- qmake-qt5 ../$pkgname PREFIX=/usr
+ qmake-qt5 $pkgname PREFIX=/usr
make
}
package() {
- cd build
make INSTALL_ROOT="$pkgdir" install
}