summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 180cc820425c07cd1999cecbd12aa27cd4079a6b (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
# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.

# Maintainer: Your Name <youremail@domain.com>
pkgname=kupfer-plugin-volumescc
pkgver=1
pkgrel=2
pkgdesc="Modified version of default kupfer volumes plugin that allows usage of a custom unmount command"
arch=('any')
url="https://gist.github.com/4351271"
license=('GPL')
makedepends=('git')
depends=('kupfer')
source=("kupfer-volumes-cc::git://gist.github.com/4351271.git")
sha256sums=(SKIP)

package() {
  cd "${srcdir}"
  install -Dm644 kupfer-volumes-cc/volumes_cc.py "${pkgdir}/usr/share/kupfer/kupfer/plugin/volumes_cc.py"
}

# vim:set ts=2 sw=2 et: