updated on Fri Jan 6 00:09:29 UTC 2012
[aur-mirror.git] / libv2 / PKGBUILD
blob7a2f618d8b3ca2844aead05694c7478e19a19b42
1 # Contributor: Lex Rivera <x-demon@x-demon.org>
2 pkgname=libv2
3 pkgver=1.11
4 pkgrel=1
5 pkgdesc="library with different classes for data structures, daemons, mysql, sockets, cgi, oss (mixer by now) management and much more."
6 arch=('i686' 'x86_64')
7 url="http://sorcerynet.org"
8 license=('GPL2')
9 depends=()
10 makedepends=()
11 optdepends=()
12 conflicts=()
13 source=(http://www.sorcerynet.org/downloads/libv2-${pkgver}.tar.gz)
15 md5sums=('94516d0716a0ef0226d0ce6b0bb1710d')
17 build() {
18   cd $srcdir/voodoo2
19   msg "Building sources"
20   make || return 1
21   msg "Make finished, making tgz dist file"
22   make dist_tgz || return 1
23   msg "Copying to pkgdir..."
24   cp -r /tmp/voodoo2.temp/* ${pkgdir} || return 1
25   msg "All done!"
27 # vim:syntax=sh