mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
64 lines
1.6 KiB
Bash
64 lines
1.6 KiB
Bash
#
|
|
# KDE SC Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# contributor (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=xterm
|
|
pkgver=267
|
|
pkgrel=1
|
|
pkgdesc="X Terminal Emulator"
|
|
arch=('i686' 'x86_64')
|
|
url="http://invisible-island.net/xterm/"
|
|
license=('custom')
|
|
depends=('libxft' 'libxaw' 'ncurses' 'xorg-apps' 'xbitmaps')
|
|
groups=('xorg')
|
|
categories=('system')
|
|
source=(ftp://invisible-island.net/${pkgname}/${pkgname}-${pkgver}.tgz
|
|
LICENSE)
|
|
md5sums=('3945ab70cfa2a9e95804157ee1b0f8e8'
|
|
'10ecc3f8ee91e3189863a172f68282d2')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr \
|
|
--libdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--with-app-defaults=/usr/share/X11/app-defaults/ \
|
|
--with-x \
|
|
--disable-full-tgetent \
|
|
--disable-imake \
|
|
--enable-ansi-color \
|
|
--enable-88-color \
|
|
--enable-256-color \
|
|
--enable-broken-osc \
|
|
--enable-broken-st \
|
|
--enable-load-vt-fonts \
|
|
--enable-i18n \
|
|
--enable-wide-chars \
|
|
--enable-doublechars \
|
|
--enable-warnings \
|
|
--enable-tcap-query \
|
|
--enable-logging \
|
|
--enable-dabbrev \
|
|
--enable-freetype \
|
|
--enable-luit \
|
|
--enable-mini-luit \
|
|
--enable-narrowproto \
|
|
--enable-exec-xterm \
|
|
--with-tty-group=tty
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
chmod 0755 "${pkgdir}/usr/bin/xterm"
|
|
|
|
install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
|
|
install -m644 "${srcdir}/LICENSE" \
|
|
"${pkgdir}/usr/share/licenses/${pkgname}/"
|
|
}
|