diff options
Diffstat (limited to 'extra/oxygen-gtk2/PKGBUILD')
-rw-r--r-- | extra/oxygen-gtk2/PKGBUILD | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/extra/oxygen-gtk2/PKGBUILD b/extra/oxygen-gtk2/PKGBUILD index 78605e7eb..ef3734a86 100644 --- a/extra/oxygen-gtk2/PKGBUILD +++ b/extra/oxygen-gtk2/PKGBUILD @@ -1,23 +1,22 @@ -# $Id: PKGBUILD 163736 2012-07-18 10:30:46Z andrea $ +# $Id: PKGBUILD 167990 2012-10-04 19:22:04Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: birdflesh <antkoul at gmail dot com> pkgname=oxygen-gtk2 -pkgver=1.3.0 +pkgver=1.3.1 pkgrel=1 pkgdesc="Port of the default KDE widget theme (Oxygen) to GTK2" arch=('i686' 'x86_64') url='https://projects.kde.org/projects/playground/artwork/oxygen-gtk/' license=('LGPL') -depends=('gtk2' 'dbus-glib') +depends=('gtk2') conflicts=('oxygen-gtk') replaces=('oxygen-gtk') makedepends=('cmake') source=("http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2") -md5sums=('9c9d996904db3f4897772788f3bf1599') +md5sums=('269283e34c5ae547a062da29cab58aa9') build() { - cd "${srcdir}" mkdir build cd build cmake ../${pkgname}-${pkgver} \ @@ -27,6 +26,6 @@ build() { } package() { - cd "${srcdir}"/build + cd build make DESTDIR="${pkgdir}" install } |