updated on Sun Jan 8 12:02:35 UTC 2012
[aur-mirror.git] / pacinstall / PKGBUILD
blob688ca0f420b9443324796cd84ac1d7193179067d
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: Thomas Oster <thomas.oster@rwth-aachen.de>
7 pkgname=pacinstall
8 pkgver=0.2
9 pkgrel=1
10 epoch=
11 pkgdesc="use pacinstall instead of make install to generate binary packages without creating an PKGBUILD(like checkinstall for debian/slackware)"
12 arch=(any)
13 url="http://kantico.de/texray/pacinstall.xhtml"
14 license=('GPL')
15 groups=()
16 depends=('installwatch')
17 makedepends=()
18 checkdepends=()
19 optdepends=()
20 provides=()
21 conflicts=()
22 replaces=()
23 backup=()
24 options=()
25 install=
26 changelog=
27 source=('http://kantico.de/texray/code/pacinstall-0.2')
28 noextract=()
29 md5sums=('e637e4dc6b2a584243a26a61d44f6faf')
30 package() {
31   cd "$srcdir"
32   mkdir -p $pkgdir/usr/bin
33   cp pacinstall-0.2 $pkgdir/usr/bin/pacinstall
34   chmod +x $pkgdir/usr/bin/pacinstall
37 # vim:set ts=2 sw=2 et: