mirror of
https://github.com/archlinux/aur.git
synced 2026-02-28 00:43:01 +01:00
Initial commit using aur2git
This commit is contained in:
commit
74db09a19e
2 changed files with 41 additions and 0 deletions
16
.SRCINFO
Normal file
16
.SRCINFO
Normal file
|
|
@ -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
|
||||
|
||||
25
PKGBUILD
Normal file
25
PKGBUILD
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
# Maintainer: Jameson Pugh <imntreal@gmail.com>
|
||||
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:
|
||||
Loading…
Add table
Reference in a new issue