Advertisement
Guest User

Untitled

a guest
Apr 26th, 2012
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. # Maintainer: SpepS <dreamspepser at yahoo dot it>
  2. # Contributor: Jonathan Conder <jonno dot conder at gmail dot com>
  3.  
  4. _pkgbasename=gtk-engine-murrine
  5. pkgname=lib32-$_pkgbasename
  6. pkgver=0.98.2
  7. pkgrel=1
  8. pkgdesc="GTK2 engine to make your desktop look like a 'murrina', an italian word meaning the art glass works done by Venicians glass blowers. Multilib."
  9. arch=('x86_64')
  10. url="http://cimitan.com/murrine/project/murrine"
  11. license=('GPL')
  12. depends=('lib32-gtk2' "$_pkgbasename")
  13. makedepends=('gcc-multilib' 'intltool' 'perl')
  14. options=('!libtool')
  15. source=("http://ftp.gnome.org/pub/GNOME/sources/murrine/${pkgver%.*}/murrine-$pkgver.tar.xz")
  16. md5sums=('bf01e0097b5f1e164dbcf807f4b9745e')
  17.  
  18. build() {
  19.  
  20. export CC='gcc -m32'
  21. export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
  22.  
  23. cd "$srcdir/murrine-$pkgver"
  24.  
  25. ./configure \
  26. --prefix=/usr \
  27. --libdir=/usr/lib32 \
  28. --enable-animation \
  29. --enable-animationrtl
  30.  
  31.  
  32. make
  33. }
  34.  
  35. package() {
  36.  
  37. cd "$srcdir/murrine-$pkgver"
  38.  
  39. make DESTDIR="$pkgdir" install
  40. rm -rf "$pkgdir/usr/share"
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement