summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesús Castro2020-05-22 00:18:54 -0500
committerJesús Castro2020-05-22 00:18:54 -0500
commit88b2daac814236502da5aa32969845248fd038c5 (patch)
tree934d3a47dcc2fc9dbf9f1239a6c799c4a0f54858
parentcc0d9635e1f23c47bdcd2128fb5ac53538ffe50a (diff)
downloadaur-88b2daac814236502da5aa32969845248fd038c5.tar.gz
PKGBUILD: fix installation directory
Apparently, it's enough with just `make install`. Signed-off-by: Jesús Castro <x51v4n@gmail.com>
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 5896508d24a9..d3858e54bd3b 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = i3-gnome
pkgdesc = Use i3 with GNOME Session integration.
pkgver = 3.36.0
- pkgrel = 2
+ pkgrel = 3
epoch = 1
url = https://github.com/i3-gnome/i3-gnome/
arch = any
diff --git a/PKGBUILD b/PKGBUILD
index 45caa266d4fa..e794f855cced 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=i3-gnome
pkgver=3.36.0
-pkgrel=2
+pkgrel=3
epoch=1
pkgdesc="Use i3 with GNOME Session integration."
arch=('any')
@@ -29,6 +29,6 @@ build() {
package() {
cd "$pkgname-$pkgver"
- make DESTDIR="$pkgdir/" install
+ make install
}