2019-04-30 12:43:34 +02:00
|
|
|
# Description: A modern terminal emulator
|
|
|
|
# URL: https://www.xfce.org
|
2019-06-07 00:13:38 +02:00
|
|
|
# Maintainer: jolupa, jlpavon at me dot com
|
2019-04-30 12:43:34 +02:00
|
|
|
# Depends on: vte3
|
|
|
|
|
|
|
|
name=xfce4-terminal
|
|
|
|
version=0.8.7.4
|
2019-06-01 12:49:24 +02:00
|
|
|
release=4
|
2019-05-18 12:27:47 +02:00
|
|
|
source=(https://archive.xfce.org/src/apps/$name/0.8/$name-$version.tar.bz2 drop-unicode-encodings.patch)
|
2019-04-30 12:43:34 +02:00
|
|
|
|
|
|
|
build() {
|
2019-05-11 19:09:44 +02:00
|
|
|
|
|
|
|
cd $name-$version
|
|
|
|
|
2019-05-18 12:27:47 +02:00
|
|
|
patch -p1 -i $SRC/drop-unicode-encodings.patch
|
|
|
|
|
2019-05-11 19:09:44 +02:00
|
|
|
./configure \
|
2019-05-18 12:27:47 +02:00
|
|
|
--prefix=/usr \
|
|
|
|
--libexecdir=/usr/lib/$name \
|
|
|
|
--disable-debug \
|
2019-06-01 12:49:24 +02:00
|
|
|
--disable-gtk-doc \
|
|
|
|
--disable-gtk-doc-html \
|
|
|
|
--disable-gtk-doc-pdf
|
2019-04-30 12:43:34 +02:00
|
|
|
|
|
|
|
make
|
|
|
|
|
|
|
|
make DESTDIR=$PKG install
|
2019-05-20 21:48:17 +02:00
|
|
|
|
|
|
|
#rm -r $PKG/usr/share/locale
|
|
|
|
|
2019-04-30 12:43:34 +02:00
|
|
|
}
|