updated on Thu Jan 12 20:00:29 UTC 2012
[aur-mirror.git] / dvdid / PKGBUILD
blob4474b255cea532329eb52a733ec5dbae890ee065
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: Jens Nyberg <jens.nyberg@gmail.com>
7 pkgname=dvdid
8 pkgver=0.1.1
9 pkgrel=1
10 epoch=
11 pkgdesc="Utility to identify DVD identification numbers"
12 arch=('i686' 'x86_64')
13 url="http://www.srcf.ucam.org/~cjk32/dvdid/"
14 license=('GPL')
15 groupsdd=()
16 depends=()
17 makedepends=()
18 checkdepends=()
19 optdepends=()
20 provides=()
21 conflicts=()
22 replaces=()
23 backup=()
24 options=()
25 install=
26 changelog=
27 source=($pkgname-$pkgver.tar.gz)
28 noextract=()
29 md5sums=('813603f07b33ba902d3546943f8df142')
31 build() {
32   cd "$srcdir/$pkgname-$pkgver"
33   ./configure --prefix=/usr
34   make
37 check() {
38   cd "$srcdir/$pkgname-$pkgver"
39   make -k check
42 package() {
43   cd "$srcdir/$pkgname-$pkgver"
44   make DESTDIR="$pkgdir/" install
47 # vim:set ts=2 sw=2 et: