46 lines
1.2 KiB
Bash
46 lines
1.2 KiB
Bash
#!/usr/bin/bash
|
|
# JOBoRun : Jwm OpenBox Obarun RUNit
|
|
# Maintainer : Joe Bo Run <joborun@disroot.org>
|
|
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobextra/$pkgname"
|
|
# Website : https://pozol.eu
|
|
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
|
|
|
pkgname=xfce4-terminal
|
|
pkgver=1.0.2
|
|
pkgrel=01
|
|
pkgdesc="An xfce4 modern terminal emulator no html docs"
|
|
arch=('x86_64')
|
|
url="https://docs.xfce.org/apps/terminal/start"
|
|
groups=('xfce4')
|
|
depends=('libxfce4ui' 'vte3' 'hicolor-icon-theme')
|
|
makedepends=('intltool')
|
|
source=(https://archive.xfce.org/src/apps/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
|
|
|
|
prepare() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
}
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--libexecdir=/usr/lib/xfce4 \
|
|
--localstatedir=/var \
|
|
--disable-static \
|
|
--enable-gtk-doc-html=no \
|
|
--disable-debug
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
#---- license gpg-key sha256sums ----
|
|
|
|
license=('GPL2')
|
|
|
|
sha256sums=(ac1543167b43322ad2483ffb033a7e74669ecb59f4b63016a3c183d96141d326) # xfce4-terminal-1.0.2.tar.bz2
|