summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4f00ac40f1e2e1453e9062ff3d8c945e6436cd32 (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: Gilles Quenot <gilles.quenot@sputnick.fr>
pkgname=heyu
pkgver=2.11_rc3
_pkgver=2.11-rc3
pkgrel=3
pkgdesc="X10 Automation for Linux, Unix, and Mac OS X"
arch=(i686 x86_64)
url="http://www.heyu.org/"
license=('GPLv3')
provides=("heyu")
depends=()
makedepends=('make')
conflicts=('heyu')
source=("https://github.com/HeyuX10Automation/heyu/archive/v${_pkgver}.tar.gz")
md5sums=('7a88fcfe7133ca7a149e1c102de2ba0d')

prepare() { true; }

build() {
  cd $srcdir/$pkgname-$_pkgver
  ./configure --localstatedir=/var --mandir=/usr/share/man --enable-postinst=./post-install.sh --sysconfdir=/etc --prefix=/usr
  make || return 1
}

package() {
  cd $srcdir/$pkgname-$_pkgver
  make DESTDIR="$pkgdir/" install
}