diff options
author | Perberos <[email protected]> | 2013-05-08 07:51:17 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2013-05-08 07:51:17 -0300 |
commit | 5f48e596944cd7c12aeb4074758dde4451ddccea (patch) | |
tree | af6e4f10a09c2474784c9d46931288a4cd9eda55 /distro | |
parent | b6c58586657b3d11f7ade8f01d0dcb500732164b (diff) | |
download | mate-desktop-5f48e596944cd7c12aeb4074758dde4451ddccea.tar.bz2 mate-desktop-5f48e596944cd7c12aeb4074758dde4451ddccea.tar.xz |
fixed g_type_init() deprecation
added Not without my gnu
Diffstat (limited to 'distro')
-rw-r--r-- | distro/archlinux/PKGBUILD | 35 |
1 files changed, 18 insertions, 17 deletions
diff --git a/distro/archlinux/PKGBUILD b/distro/archlinux/PKGBUILD index 5944a6a..077863b 100644 --- a/distro/archlinux/PKGBUILD +++ b/distro/archlinux/PKGBUILD @@ -1,10 +1,10 @@ pkgname=mate-desktop -pkgver=1.5.0 +pkgver=custom pkgrel=1 pkgdesc="Library with common API for various MATE modules" arch=(i686 x86_64) license=(GPL LGPL) -depends=('libunique' 'libmatenotify' 'hicolor-icon-theme' 'gvfs-obexftp' 'obexd-client') +depends=('libunique' 'hicolor-icon-theme' 'gvfs-obexftp' 'obexd-client') makedepends=('mate-doc-utils' 'intltool') options=('!emptydirs' '!libtool') url="http://mate-desktop.org/" @@ -14,24 +14,25 @@ sha256sums=() install=mate-desktop.install build() { - cd "${srcdir}/../../../" + cd "${srcdir}/../../../" - ./autogen.sh \ - --prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --disable-static \ - --disable-scrollkeeper \ - --disable-startup-notification \ - --enable-unique || return 1 - # --with-gtk=3.0 - make || return 1 + ./autogen.sh \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --disable-static \ + --disable-scrollkeeper \ + --disable-startup-notification \ + --enable-unique || return 1 + # --with-gtk=3.0 \ + # --enable-gnucat + make || return 1 } package() { - cd "${srcdir}/../../../" - make DESTDIR="$pkgdir" install + cd "${srcdir}/../../../" + make DESTDIR="$pkgdir" install - # prevent conflicts errors - mv "${pkgdir}/usr/share/omf" "${pkgdir}/usr/share/mate-omf" + # prevent conflicts errors + # mv "${pkgdir}/usr/share/omf" "${pkgdir}/usr/share/mate-omf" } |