summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Plsek2016-11-15 18:28:03 -0500
committerJeremy Plsek2016-11-15 18:28:03 -0500
commit4d1ddc7684e82dcea6f2d1fbcf4ae83b4beaa5ee (patch)
tree760a81ec939f777834555d6950c14091a29aacc8
parent5859b5bd4bace44e5871d740cf1597f5e029c1e4 (diff)
downloadaur-4d1ddc7684e82dcea6f2d1fbcf4ae83b4beaa5ee.tar.gz
make install is part of pkgbuild
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index d3677b020847..1e6ce78924d3 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = puush-qt
pkgdesc = GUI frontend for puush which will create a system tray icon.
pkgver = 0.1
- pkgrel = 3
+ pkgrel = 4
url = https://github.com/jplsek/puush-qt
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index c62bf7277eef..2f7a59551dbf 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=puush-qt
pkgdesc="GUI frontend for puush which will create a system tray icon."
pkgver=0.1
-pkgrel=3
+pkgrel=4
arch=('i686' 'x86_64')
url="https://github.com/jplsek/puush-qt"
license=('BSD')
@@ -23,6 +23,6 @@ build() {
package() {
cd $pkgname/build
- install -D -m755 $pkgname "$pkgdir/usr/bin/$pkgname"
+ make INSTALL_ROOT=$pkgdir install
}