summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Tran2017-08-16 22:08:23 +1000
committerVictor Tran2017-08-16 22:08:23 +1000
commita7d2600483d915f37c4ffaf2264cc13919cc0d14 (patch)
treec5a47dacc2a40de849580083bb0ba92487571cff
parent28f18c3422e5e5132a08d690fe1d10e3f0b9557d (diff)
downloadaur-a7d2600483d915f37c4ffaf2264cc13919cc0d14.tar.gz
Use make install to install
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD10
2 files changed, 4 insertions, 8 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 287279a2ddba..e5ed44021d77 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = the-libs
pkgdesc = Common libraries for the- applications by Victor Tran
pkgver = 1.3
- pkgrel = 0
+ pkgrel = 1
url = https://github.com/vicr123/the-libs
arch = x86_64
license = GPL3
diff --git a/PKGBUILD b/PKGBUILD
index 799978d3cdf6..c0e4dc60f262 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
# Maintainer: Victor Tran <vicr12345 at gmail dot com>
pkgname=the-libs
pkgver=1.3
-pkgrel=0
+pkgrel=1
pkgdesc="Common libraries for the- applications by Victor Tran"
arch=("x86_64")
url="https://github.com/vicr123/the-libs"
@@ -19,10 +19,6 @@ build() {
}
package() {
- mkdir -p "$pkgdir/usr/lib/"
- cp "$pkgname-$pkgver/"*.so* "$pkgdir/usr/lib"
- mkdir -p "$pkgdir/usr/lib/qt/mkspecs/modules/"
- cp "$pkgname-$pkgver/qt_thelib.pri" "$pkgdir/usr/lib/qt/mkspecs/modules/"
- mkdir -p "$pkgdir/usr/include/the-libs/"
- cp "$pkgname-$pkgver/"*.h "$pkgdir/usr/include/the-libs/"
+ cd "$pkgname-$pkgver"
+ make install INSTALL_ROOT=$pkgdir
}