updated on Wed Jan 25 00:20:47 UTC 2012
[aur-mirror.git] / vstruct / PKGBUILD
blob622e8852a78304942b3bcc596cb86b74e4a587f4
1 # Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
3 pkgname=vstruct
4 pkgver=1.0.1
5 pkgrel=1
6 pkgdesc="A Lua library for packing and unpacking binary data."
7 arch=('i686' 'x86_64')
8 url="http://www.funkyhorror.net/toxicfrog/projects/vstruct/"
9 license=('MIT')
10 depends=('lua')
11 conflicts=('vstruct-git')
12 source=(http://github.com/ToxicFrog/vstruct/tarball/v${pkgver})
13 md5sums=('8e49ba710cbb79ab3d2c8db59fe47bff')
15 build() {
16   cd ${srcdir}/ToxicFrog-vstruct*
17   mkdir -p ${pkgdir}/usr/lib/lua/5.1/vstruct/
18   cp *.lua ${pkgdir}/usr/lib/lua/5.1/vstruct/
19   install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
22 # vim:set ts=2 sw=2 et: