blob: ec49a5086448531a51c56f8bc902462f6eeb7d2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# Contributor: flu
# Contributor: IgnorantGuru http://igurublog.wordpress.com/contact-ignorantguru/
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
pkgname=udevil-git
pkgver=20200402.230
pkgrel=1
pkgdesc='Mount without password'
arch=('i686' 'x86_64')
url=https://github.com/alpharde/udevil
license=('GPL3')
makedepends=('intltool' 'gettext')
depends=('udev' 'glib2')
optdepends=(
'nfs-utils: mount nfs shares'
'sshfs: mount sftp shares'
'curlftpfs: mount ftp shares'
'cifs-utils: mount samba shares'
'davfs2: mount WebDAV shares'
'eject: eject via devmon'
'spacefm: devmon popups'
'zenity: devmon popups'
'pmount: devmon mount without suid udevil'
'udisks: devmon mount without suid udevil'
'udisks2: devmon mount without suid udevil'
)
conflicts=('udevil' 'devmon' 'devmon-git')
provides=('udevil' 'devmon')
backup=('etc/udevil/udevil.conf' 'etc/conf.d/devmon')
options=(!strip debug)
source=("git+${url}.git")
md5sums=(SKIP)
pkgver() {
cd udevil
printf "$(git log -1 --format="%cd" --date=short | sed 's|-||g').$(git rev-list --count HEAD)"
}
build() {
cd udevil
./configure --prefix=/usr
make
}
package() {
cd udevil
make DESTDIR="$pkgdir/" install
}
|