updated on Tue Jan 10 08:08:34 UTC 2012
[aur-mirror.git] / qupac / PKGBUILD
blobf3a60235e4bcc3388649d365ddd64f5c5f428566
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=qupac
8 pkgver=0.1.3
9 pkgrel=1
10 pkgdesc="Qt4 frontend for tupac. Features: search as you type, install/remove queue, pre-download in order to view install scripts content before installing. MOCKUP RELEASE: ONLY INSTALL FUNCTIONAL"
11 arch=()
12 url="http://lapacaloca.com/arch"
13 license=('GPL')
14 groups=()
15 depends=('pyqt>=4.0', 'tupac>=0.5.1' 'python-pexpect=>2.3')
16 makedepends=()
17 provides=()
18 conflicts=()
19 replaces=()
20 backup=()
21 options=()
22 install=
23 source=(http://lapacaloca.com/arch/$pkgname-$pkgver.tar.gz)
24 noextract=()
25 arch=('i686' 'x86_64')
26 md5sums=('256fe090412d6a09624030c8c21391c0')
28 build() {
29   cd "$startdir/src/$pkgname-$pkgver"
31   mkdir -p $startdir/pkg/usr/lib/qupac
33   cp * $startdir/pkg/usr/lib/qupac
35   mkdir -p $startdir/pkg/usr/bin
37   ln -s /usr/lib/qupac/qupac.py $startdir/pkg/usr/bin/qupac
41 # vim:set ts=2 sw=2 et: