diff options
| -rw-r--r-- | libwnck/PKGBUILD | 14 | ||||
| -rw-r--r-- | xfce4-terminal/PKGBUILD | 16 |
2 files changed, 18 insertions, 12 deletions
diff --git a/libwnck/PKGBUILD b/libwnck/PKGBUILD index fd67b98..40abeb0 100644 --- a/libwnck/PKGBUILD +++ b/libwnck/PKGBUILD @@ -1,14 +1,18 @@ # Maintainer: Jan de Groot <jgc@archlinux.org> -pkgname=libwnck +_pkgname=libwnck +pkgname=libwnck-fixed pkgver=2.31.0 pkgrel=2 pkgdesc="Window Navigator Construction Kit" arch=('x86_64') license=('LGPL') +conflicts=('libwnck') +provides=('libwnck') +replaces=('libwnck') depends=('gtk2' 'startup-notification' 'libxres') makedepends=('libxt' 'intltool' 'gobject-introspection' 'python2') url="http://www.gnome.org/" -source=(https://download.gnome.org/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz +source=(https://download.gnome.org/sources/${_pkgname}/${pkgver:0:4}/${_pkgname}-${pkgver}.tar.xz Unhandled-action-type.patch WindowActionMenu-unset-window-and-stop-async-events-on-dispose.patch) sha512sums=('54262a08882021f08f3ba7f2ddfa33fc1f02e391a0f61cf999a50a089e0d277dfe13ab133c1a46e9abf0599bd24c21dacff80b51013cbb1375d2cd71ac9abbe9' @@ -16,19 +20,19 @@ sha512sums=('54262a08882021f08f3ba7f2ddfa33fc1f02e391a0f61cf999a50a089e0d277dfe1 '1ba6ee8503e71daf103b7285ce0690042ebd86a4b85728a04ff32e6ee5789d2be71ba32149b0c246518bc47a27a233edfa9cfac9eca16cc44b3c6c8d19943423') prepare() { - cd $pkgname-$pkgver + cd $_pkgname-$pkgver patch -Np1 -i ../WindowActionMenu-unset-window-and-stop-async-events-on-dispose.patch patch -Np1 -i ../Unhandled-action-type.patch } build() { - cd "${srcdir}/${pkgname}-${pkgver}" + cd "${srcdir}/${_pkgname}-${pkgver}" ./configure --prefix=/usr --sysconfdir=/etc \ --localstatedir=/var --disable-static make } package() { - cd "${srcdir}/${pkgname}-${pkgver}" + cd "${srcdir}/${_pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install #The binaries are shipped in libwnck3 diff --git a/xfce4-terminal/PKGBUILD b/xfce4-terminal/PKGBUILD index df07a18..225da01 100644 --- a/xfce4-terminal/PKGBUILD +++ b/xfce4-terminal/PKGBUILD @@ -3,7 +3,8 @@ # Contributor: tobias <tobias funnychar archlinux.org> # Contributor: Aurelien Foret <orelien@chez.com> -pkgname=xfce4-terminal +_pkgname=xfce4-terminal +pkgname=xfce4-terminal-fixed pkgver=0.8.6 pkgrel=1 pkgdesc="A modern terminal emulator primarily for the Xfce desktop environment" @@ -13,18 +14,19 @@ license=('GPL2') groups=('xfce4') depends=('libxfce4ui' 'vte3' 'hicolor-icon-theme') makedepends=('intltool') -conflicts=('terminal') -replaces=('terminal') -source=(https://archive.xfce.org/src/apps/$pkgname/0.8/$pkgname-$pkgver.tar.bz2 hotkey.patch) +conflicts=('xfce4-terminal' 'terminal') +replaces=('xfce4-terminal' 'terminal') +provides=('xfce4-terminal') +source=(https://archive.xfce.org/src/apps/$_pkgname/0.8/$_pkgname-$pkgver.tar.bz2 hotkey.patch) sha256sums=('bc2a560409a0f0b666d1c557e991748b986ec27572a45ae88b0ee5a480d881d7' '254e0b4042074084065c2fd56d0a0522976e269df7112409ccec75cec4ebffe6') prepare() { - cd "$srcdir/$pkgname-$pkgver" + cd "$srcdir/$_pkgname-$pkgver" patch -p1 -i "$srcdir/hotkey.patch" } build() { - cd "$srcdir/$pkgname-$pkgver" + cd "$srcdir/$_pkgname-$pkgver" ./configure \ --prefix=/usr \ @@ -37,7 +39,7 @@ build() { } package() { - cd "$srcdir/$pkgname-$pkgver" + cd "$srcdir/$_pkgname-$pkgver" make DESTDIR="$pkgdir" install } |
