blob: 6458d1332f39c42173c186209b5ca57ccb4d2508 (
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
|
# Maintainer: dracorp aka Piotr Rogoza <piotr.r.public@gmail.com>
pkgname=vmtouch-systemd-git
pkgver=r6.196c4c7
pkgrel=1
pkgdesc='Systemd support for vmtouch.'
arch=('any')
url='https://github.com/dracorp/vmtouch-systemd'
license=('GPL')
depends=(libui-sh vmtouch)
makedepends=(git)
provides=(vmtouch-systemd)
conflicts=(vmtouch-systemd)
backup=(
etc/vmtouch.conf
etc/default/vmtouch
)
source=('git://github.com/dracorp/vmtouch-systemd.git')
sha256sums=('SKIP')
_gitname='vmtouch-systemd'
pkgver() {
cd $_gitname
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
}
package() {
cd "$srcdir"/$_gitname
make DESTDIR="$pkgdir" install
}
|