updated on Mon Jan 16 12:07:49 UTC 2012
[aur-mirror.git] / ceofhack / PKGBUILD
blobcc438fb89ee2b8e777dc6ab3aeeaec9b85a140da
1 # This is an example PKGBUILD file. Use this as a start to creating your own,
2 # and remove these comments. For more information, see 'man PKGBUILD'.
3 # NOTE: Please fill out the license field for your package! If it is unknown,
4 # then please put 'unknown'.
6 # Contributor: Nico Schottelius <nico-archlinux-pkg@schottelius.org>
7 pkgname=ceofhack
8 pkgver=0.6
9 pkgrel=1
10 pkgdesc="A decentralised, p2p, anonymous chat program and protocol"
11 arch=('i686' 'x86_64')
12 url="http://www.nico.schottelius.org/software/ceofhack/"
13 license=('GPL')
14 groups=()
15 depends=()
16 makedepends=()
17 optdepends=()
18 provides=('ceofhack')
19 conflicts=()
20 replaces=()
21 backup=()
22 options=()
23 install=
24 source=($url$pkgname-$pkgver.tar.xz)
25 noextract=()
26 md5sums=('a75af3edd8fb492485899a352e247c71')
28 build() {
29   cd "$srcdir/$pkgname-$pkgver"
31   make || return 1
32   mkdir -p "$pkgdir/usr/bin"
33   cp ceofhack "$pkgdir/usr/bin"
34   #make DESTDIR="$pkgdir/" install
37 # vim:set ts=2 sw=2 et: