commit 74db09a19ebc18d8ec5b5225343a10e931f4562c Author: Jameson Pugh Date: Mon Jun 8 08:29:35 2015 -0400 Initial commit using aur2git diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..758a68c26521 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,16 @@ +# Generated by makepkg 4.2.0 +# Tue Dec 30 20:43:40 UTC 2014 +pkgbase = flipit-x10 + pkgdesc = Flipit is a utility to allow the use of the X10 FireCracker wireless appliance control kit + pkgver = 0.3.6 + pkgrel = 1 + url = http://www.lickey.com/flipit + arch = i686 + arch = x86_64 + license = BSD + depends = glibc + source = http://www.lickey.com/flipit/dist/flipit-0.3.6.tar.gz + sha256sums = d996fa31d049f05c4fe163152192a60dce9b9d7c4711c948d08deaf5c61ae354 + +pkgname = flipit-x10 + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..89e73ad992cf --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,25 @@ +# Maintainer: Jameson Pugh +pkgname=flipit-x10 +pkgver=0.3.6 +pkgrel=1 +pkgdesc="Flipit is a utility to allow the use of the X10 FireCracker wireless appliance control kit" +url="http://www.lickey.com/flipit" +arch=('i686' 'x86_64') +license=('BSD') +depends=('glibc') +source=("http://www.lickey.com/flipit/dist/flipit-${pkgver}.tar.gz") +sha256sums=('d996fa31d049f05c4fe163152192a60dce9b9d7c4711c948d08deaf5c61ae354') + +build() { + cd "${srcdir}/flipit-${pkgver}" + ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man + make +} + +package() { + cd "${srcdir}/flipit-${pkgver}" + make DESTDIR="${pkgdir}" install + install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} + +# vim:set ts=2 sw=2 et: