1 # udisksvm script for automounting removable media
2 # It is GUI oriented using Traydevice in AUR to un-mount/re-mount media
3 # and show an icon in the systray (so one is needed)
4 # the configuration file for Traydevice is provided :
5 # /usr/share/udisksvm/udisksvm.xml
8 # Maintainer: Bernard Baeyens (berbae)
12 pkgdesc="GUI oriented automounting script for removable media"
14 url="https://bbs.archlinux.org/viewtopic.php?id=112397"
16 depends=("bash>=4.0" "udisks" "traydevice")
17 install=udisksvm.install
18 backup=("usr/share/udisksvm/$pkgname.xml")
20 source=("https://github.com/berbae/udisksvm/raw/master/README"
21 "https://github.com/berbae/udisksvm/raw/master/$pkgname.xml"
22 "https://github.com/berbae/udisksvm/raw/master/$pkgname-$pkgver.sh")
24 sha256sums=("fb5a36dfd6bf6332c6ce2394dd2b6d06ad379b99a81c8fc0457a086021abd88b"
25 "1c8020a0f03de043f1886844196daa6795539ba9b5bf9aea4a52c6c42feb5252"
26 "d91d9de9075fd848329b387a951e22e0e6d33853db2e84ce7e1a913db52c50e1")
30 install -D -m 644 README ${pkgdir}/usr/share/udisksvm/README
31 install -D -m 666 $pkgname.xml ${pkgdir}/usr/share/udisksvm/$pkgname.xml
32 install -D $pkgname-$pkgver.sh ${pkgdir}/usr/bin/udisksvm
35 # vim:set ts=2 sw=2 et: