mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-08 08:03:51 +02:00
rxvt-unicode: added unicode3 build option
This commit is contained in:
parent
fce043d7b7
commit
ac5dc1ba81
1 changed files with 9 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
||||||
# Template build file for 'rxvt-unicode'.
|
# Template build file for 'rxvt-unicode'.
|
||||||
pkgname=rxvt-unicode
|
pkgname=rxvt-unicode
|
||||||
version=9.19
|
version=9.19
|
||||||
revision=3
|
revision=5
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
configure_args="
|
configure_args="
|
||||||
--with-terminfo=/usr/share/terminfo --enable-256-color
|
--with-terminfo=/usr/share/terminfo --enable-256-color
|
||||||
|
@ -24,10 +24,11 @@ post_install() {
|
||||||
}
|
}
|
||||||
|
|
||||||
# Package build options
|
# Package build options
|
||||||
build_options="gdk_pixbuf perl startup_notification"
|
build_options="gdk_pixbuf perl startup_notification unicode3"
|
||||||
desc_option_gdk_pixbuf="Enable support to use transparency via gdk-pixbuf"
|
desc_option_gdk_pixbuf="Enable support to use transparency via gdk-pixbuf"
|
||||||
desc_option_perl="Enable support for perl bindings"
|
desc_option_perl="Enable support for perl bindings"
|
||||||
desc_option_startup_notification="Enable support for desktop notification"
|
desc_option_startup_notification="Enable support for desktop notification"
|
||||||
|
desc_option_unicode3="Use 21 instead of 16 bits to represent unicode chars"
|
||||||
|
|
||||||
# Enable startup-notification by default.
|
# Enable startup-notification by default.
|
||||||
build_options_default="startup_notification"
|
build_options_default="startup_notification"
|
||||||
|
@ -52,3 +53,9 @@ if [ "$build_option_startup_notification" ]; then
|
||||||
else
|
else
|
||||||
configure_args+=" --disable-startup-notification"
|
configure_args+=" --disable-startup-notification"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ "$build_option_unicode3" ]; then
|
||||||
|
configure_args+=" --enable-unicode3"
|
||||||
|
else
|
||||||
|
configure_args+=" --disable-unicode3"
|
||||||
|
fi
|
||||||
|
|
Loading…
Add table
Reference in a new issue