Advertisement
Guest User

Untitled

a guest
Apr 5th, 2012
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.71 KB | None | 0 0
  1. pkgname=oxygen-gtk2
  2. pkgver=1.2.2
  3. pkgrel=2
  4. pkgdesc="Port of the default KDE widget theme (Oxygen) to GTK2"
  5. arch=('i686' 'x86_64')
  6. url='https://projects.kde.org/projects/playground/artwork/oxygen-gtk/'
  7. license=('LGPL')
  8. depends=('gtk2' 'dbus-glib')
  9. conflicts=('oxygen-gtk')
  10. replaces=('oxygen-gtk')
  11. makedepends=('cmake')
  12. source=("http://download.kde.org/stable/${pkgname}/${pkgver}-1/src/${pkgname}-${pkgver}-1.tar.bz2")
  13. md5sums=('d6757235374df90f48fe34edce5c2464')
  14.  
  15. build() {
  16.   cd "${srcdir}"
  17.   mkdir build
  18.   cd build
  19.   cmake ../${pkgname}-${pkgver}-1 \
  20.     -DCMAKE_BUILD_TYPE=Release \
  21.     -DCMAKE_INSTALL_PREFIX=/usr
  22.   make
  23. }
  24.  
  25. package() {
  26.   cd "${srcdir}"/build
  27.   make DESTDIR="${pkgdir}" install
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement