Advertisement
Guest User

Updated libunity PKGBUILD

a guest
Jul 27th, 2012
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.85 KB | None | 0 0
  1. # Maintainer: György Balló <ballogy@freestart.hu>
  2. pkgname=libunity
  3. pkgver=5.92.0
  4. pkgrel=1
  5. pkgdesc="A library for instrumenting and integrating with all aspects of the Unity shell"
  6. arch=('i686' 'x86_64')
  7. url="https://launchpad.net/libunity"
  8. license=('LGPL')
  9. depends=('libgee' 'dee' 'libdbusmenu' 'dbus-glib')
  10. makedepends=('vala' 'python2' 'gobject-introspection')
  11. options=('!libtool')
  12. source=(http://launchpad.net/$pkgname/6.0/$pkgver/+download/$pkgname-$pkgver.tar.gz)
  13. md5sums=('afc7b75e117d3516cdcf6ec56fcb5850')
  14.  
  15. build() {
  16.   cd "$srcdir/$pkgname-$pkgver"
  17.  
  18.   # Disable building tests
  19.   sed -i '/test \\/ d' Makefile.in
  20.  
  21.   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
  22.               --disable-static \
  23.               PYTHON=python2
  24.   make
  25. }
  26.  
  27. package() {
  28.   cd "$srcdir/$pkgname-$pkgver"
  29.  
  30.   make DESTDIR="$pkgdir/" install
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement