updated on Tue Jan 10 00:10:07 UTC 2012
[aur-mirror.git] / quote / PKGBUILD
blobf396ba18d6831aa29ca06f789cb0ba967729f462
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: Your Name <youremail@domain.com>
7 pkgname=quote
8 pkgver=0.05
9 pkgrel=1
10 pkgdesc="quote is a simple Perl script that allows retrieval of stock quotes from Yahoo! Finance."
11 arch=('i686', 'x86_64')
12 url="http://www.circlemud.org/~jelson/software/quote/"
13 license=('GPL')
14 groups=()
15 install=
16 source=(http://www.circlemud.org/pub/jelson/quote/$pkgname-$pkgver.tar.gz)
18 build() {
19   cd "$srcdir/$pkgname-$pkgver"
20  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
21   make || return 1
22   make DESTDIR="$pkgdir/" install
25 # vim:set ts=2 sw=2 et:
26 md5sums=('c02a98d99b8e0a6490a7ff744d79e81e')