64 lines
2.1 KiB
Text
64 lines
2.1 KiB
Text
# Template build file for 'rxvt-unicode'.
|
|
pkgname=rxvt-unicode
|
|
version=9.18
|
|
revision=2
|
|
build_style=gnu-configure
|
|
configure_args="--with-terminfo=/usr/share/terminfo --enable-256-color
|
|
--enable-font-styles --enable-xim --enable-keepscrolling
|
|
--enable-selectionscrolling --enable-smart-resize --enable-transparency
|
|
--enable-utmp --enable-wtmp --enable-lastlog --disable-frills
|
|
--enable-combining --with-term=rxvt-256color"
|
|
hostmakedepends="pkg-config"
|
|
makedepends="renderproto fontconfig-devel libXrender-devel libXft-devel libSM-devel"
|
|
short_desc="rxvt clone supporting Xft fonts and Unicode"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
homepage="http://software.schmorp.de/pkg/rxvt-unicode.html"
|
|
license="GPL-2"
|
|
distfiles="http://dist.schmorp.de/${pkgname}/${pkgname}-${version}.tar.bz2"
|
|
checksum=87b72a43cac7c9362a984094c661a632ce1a829ad90f149142ab1953854b433f
|
|
long_desc="
|
|
$pkgname is a clone of the well known terminal emulator rxvt,
|
|
modified to store text in Unicode (either UCS-2 or UCS-4) and to use
|
|
locale-correct input and output. It also supports mixing multiple
|
|
fonts at the same time, including Xft fonts."
|
|
|
|
post_install() {
|
|
vinstall ${FILESDIR}/${pkgname}.desktop 644 usr/share/applications
|
|
vinstall ${FILESDIR}/${pkgname}.png 644 usr/share/pixmaps
|
|
}
|
|
|
|
# Package build options
|
|
build_options="gdk_pixbuf perl startup_notification"
|
|
desc_option_gdk_pixbuf="Enable support to use transparency via gdk-pixbuf"
|
|
desc_option_perl="Enable support for perl bindings"
|
|
desc_option_startup_notification="Enable support for desktop notification"
|
|
|
|
# Enable startup-notification by default.
|
|
build_options_default="startup_notification"
|
|
|
|
if [ "$build_option_gdk_pixbuf" ]; then
|
|
configure_args+=" --enable-pixbuf"
|
|
makedepends+=" gdk-pixbuf-devel"
|
|
else
|
|
configure_args+=" --disable-pixbuf"
|
|
fi
|
|
|
|
if [ "$build_option_perl" ]; then
|
|
configure_args+=" --enable-perl"
|
|
makedepends+=" perl"
|
|
else
|
|
configure_args+=" --disable-perl"
|
|
fi
|
|
|
|
if [ "$build_option_startup_notification" ]; then
|
|
configure_args+=" --enable-startup-notification"
|
|
makedepends+=" startup-notification-devel"
|
|
else
|
|
configure_args+=" --disable-startup-notification"
|
|
fi
|
|
|
|
rxvt-unicode_package() {
|
|
pkg_install() {
|
|
vmove usr
|
|
}
|
|
}
|