summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorManuel Conzelmann2018-01-26 13:40:13 +0100
committerManuel Conzelmann2018-01-26 13:41:42 +0100
commit374182988b4c946172bcec3554a6841cc510db2c (patch)
tree8111696c8a69ef65951b528957e695c45610234d
parent5e73321b2d48d62624b980d4675d121e0e7d53de (diff)
downloadaur-374182988b4c946172bcec3554a6841cc510db2c.tar.gz
fixed a typing mistake in PKGBUILD
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 5c9993fd67ee..abf7ffb42685 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = dongle-unlock
pkgdesc = Automatically unlock encrypted devices with a thumbdrive-dongle or enter a passphrase to unlock them during boot with systemd. Conflicts probably with entries in /etc/crypttab
- pkgver = 1
+ pkgver = 1.1
pkgrel = 1
install = dongle-unlock.install
arch = any
diff --git a/PKGBUILD b/PKGBUILD
index d43f719dad4a..b9a7baed2553 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,6 +1,6 @@
# Maintainer: Manuel Conzelmann <manuel.conzelmann at hs-furtwangen dot de>
pkgname=dongle-unlock
-pkgver=1
+pkgver=1.1
pkgrel=1
pkgdesc="Automatically unlock encrypted devices with a thumbdrive-dongle or enter a passphrase to unlock them during boot with systemd. Conflicts probably with entries in /etc/crypttab"
arch=('any')
@@ -17,5 +17,5 @@ package() {
install -D -m644 $srcdir/manolo.luksopenwithkey.service $pkgdir/etc/systemd/system/manolo.luksopenwithkey.service || return 1
install -D -m644 $srcdir/manolo.luksopenwithoutkey.service $pkgdir/etc/systemd/system/manolo.luksopenwithoutkey.service || return 1
install -D -m644 $srcdir/mnt-dongle.mount $pkgdir/etc/systemd/system/mnt-dongle.mount || return 1
- install -D -m644 $srcdir/mnt-dongle.mount $pkgdir/etc/systemd/system/mnt-daten.mount || return 1
+ install -D -m644 $srcdir/mnt-daten.mount $pkgdir/etc/systemd/system/mnt-daten.mount || return 1
}