updated on Fri Jan 20 04:00:45 UTC 2012
[aur-mirror.git] / conio / PKGBUILD
blob487d345c9ed083c6117e383ce74f4733239e476c
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 # Maintainer: Your Name <youremail@domain.com>
7 pkgname=conio
8 pkgver=0.1.0
9 pkgrel=1
10 epoch=
11 pkgdesc="borland conio for linux"
12 arch=('i686' 'x86_64')
13 url="http://sourceforge.net/projects/conioforlinux/files/conio-0.1.0/"
14 license=('GPL')
15 groups=()
16 depends=('ncurses')
17 makedepends=()
18 checkdepends=()
19 optdepends=()
20 provides=()
21 conflicts=()
22 replaces=()
23 backup=()
24 options=()
25 source=(http://sourceforge.net/projects/conioforlinux/files/conio-0.1.0/$pkgname-$pkgver.tar.gz/download)
26 noextract=()
27 md5sums=(b39c59ddffd9c99b9f5657dceafc583e) #generate with 'makepkg -g'
29 build() {
30   cd "$srcdir/$pkgname"
31   ./configure --prefix=/usr
32   make
35 check() {
36   cd "$srcdir/$pkgname"
37   make -k check
40 package() {
41   cd "$srcdir/$pkgname"
42   make DESTDIR="$pkgdir/" install
45 # vim:set ts=2 sw=2 et: