summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Straube2016-05-14 15:05:54 +0200
committerMichael Straube2016-05-14 15:05:54 +0200
commitf277e8b5e35be4508940b28b6e2fd7ce380dcdc4 (patch)
tree2c6580f14881f01c2eddf83baa7c267dd3544c9e
parent47b737e73627cf90b2b71b3f55e19cc13edd2876 (diff)
downloadaur-f277e8b5e35be4508940b28b6e2fd7ce380dcdc4.tar.gz
removed cd $srcdir
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD8
2 files changed, 5 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 2281a353857c..947d574ce96f 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,5 +1,5 @@
# Generated by mksrcinfo v8
-# Tue May 3 16:28:01 UTC 2016
+# Sat May 14 13:05:27 UTC 2016
pkgbase = grub2-theme-arch-leap
pkgdesc = Arch Linux branded theme adapted from openSUSE Leap 42.1
pkgver = 1
diff --git a/PKGBUILD b/PKGBUILD
index 0865eccac5e1..eaea1db383dd 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -7,11 +7,11 @@ url="https://github.com/mis2/grub2-theme-arch-leap"
arch=('any')
license=('GPL')
depends=('grub')
-source=("https://github.com/mis2/${pkgname}/archive/${pkgver}.tar.gz")
+source=("https://github.com/mis2/$pkgname/archive/$pkgver.tar.gz")
sha256sums=('73567860ca4e95ad9f3b51dad00b3735a6eb87d11f7597ca699110fe2d7fefea')
package() {
- cd "${srcdir}/${pkgname}-${pkgver}/theme"
- install -d -m755 "${pkgdir}/boot/grub/themes/arch-leap"
- install -m644 * "${pkgdir}/boot/grub/themes/arch-leap/"
+ cd "$pkgname-$pkgver/theme"
+ install -d -m755 "$pkgdir/boot/grub/themes/arch-leap"
+ install -m644 * "$pkgdir/boot/grub/themes/arch-leap/"
}