blob: ebd85fa627faac825bc6344dc7523ddb3e3053c7 (
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
|
# Maintainer: Your Name <youremail@example.com>
pkgname=scan-s2-git
pkgver=r58.725d42d
pkgrel=1
pkgdesc="A channels scanning tool for the Linux DVB S2 API"
arch=('any')
url="https://github.com/crazycat69/scan-s2"
license=('GPL')
depends=('python')
makedepends=('git')
provides=('scan-s2')
conflicts=('scan-s2')
sha256sums=('SKIP')
source=("$pkgname"::"git+https://github.com/crazycat69/scan-s2.git")
pkgver() {
cd "$pkgname"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
package() {
cd "$pkgname"
make
install -Dm755 scan-s2 "$pkgdir/usr/bin/scan-s2"
}
# vim:set ts=2 sw=2 et:
|