summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 08f3de96ec7011f1a99fc6903958a204714e3424 (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: Stefan Mark <mark at unserver dot de>

pkgname=nxsysdaemon-git
_pkgname=nxsysdaemon
pkgver=0.99
pkgrel=1
pkgdesc="System daemon for NX"
url="https://git.weitnahbei.de/nullmark/nxsysdaemon"
arch=('i686' 'x86_64')
license=('MIT')
depends=('nxlib' 'nxhelper')
optdepends=()
makedepends=('git')
provides=('nxsysdaemon')
conflicts=('nxsysdaemon')
source=("$_pkgname::git+http://git.weitnahbei.de/nullmark/nxsysdaemon")
sha256sums=('SKIP')

build() {
  cd $_pkgname
  make
}

package() {
  cd $_pkgname
  make PREFIX=/usr DESTDIR="$pkgdir" install
  install -m644 -D LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
  install -m644 -D README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
}